Skip to content Skip to sidebar Skip to footer

How To Log In With Selenium Webdriver

Hello I am trying to log in automatically with webdriver to this webpage : https://www.oddsportal.com/login/ Here is my script : #!/usr/bin/python3 # -*- coding: utf­-8 ­-*- fro

Solution 1:

I find the solution :

driver.find_element_by_xpath('//button[@type="submit"]').click()

Post a Comment for "How To Log In With Selenium Webdriver"