fill form selenium python

Solutions on MaxInterview for fill form selenium python by the best coders in the world

showing results for - "fill form selenium python"
Mika
29 Jun 2016
1driver.find_element_by_xpath(username_input).send_keys(“username”)driver.find_element_by_xpath(password_input).send_keys(“password”)driver.find_element_by_xpath(login_submit).click()