logging in with selenium

Solutions on MaxInterview for logging in with selenium by the best coders in the world

showing results for - "logging in with selenium"
Julia
06 May 2019
1driver.get (“URL”)
2driver.find_element_by_id(“ID”).send_keys(“username”)
3driver.find_element_by_id (“ID”).send_keys(“password”)
4driver.find_element_by_id(“submit”).click()