I am trying to connect to the particular webpage but it does not click on Login button:
browser.get('https://www.tsago.gr/eshop/account')
print('Browser Opened')
username = browser.find_element_by_id('email')
username.send_keys(email)
password = browser.find_element_by_id('password')
password.send_keys(pwd)
time.sleep(2)
sing_in = browser.find_element_by_xpath('//*[@class="btn btn-primary"]')
sing_in.click()
print('Login Clicked')
I have tried find element by css, by name etc but I dont know why is not clicking on the button in order to login
The html part is the following
<div class="span3 float-right" style="float:right;">
<button type="submit" class="btn btn-primary">Connect</button>
</div>
The username and password are written and they are correct

sing_in = browser.find_element_by_xpath('//button[@type="submit"]')