Selenium Webdriver Send_keys() Not Working Properly
I am using selenium web driver to automate front end web UI actions in Python script. In this regard to input value to a text filed (mandatory field), driver.find_element_by_xpath(
Solution 1:
Try clicking on the field before input;
sel.find_element_by_xpath("//input[@name='minBid']")'.click
sel.find_element_by_xpath("//input[@name='minBid']")'.send_keys("2")
Post a Comment for "Selenium Webdriver Send_keys() Not Working Properly"