Selenium Element Is Not Visible Exception On Already Triggered Area
I'm trying to automate entries on a this site: https://gleam.io/jtwmn/3d-printer-giveaway I'm successfully able to click on the 'Visit @nexi_tech on Instagram' link, and the blue b
Solution 1:
If you try
len(driver.find_elements_by_xpath('//input[@id="contestant[name]"]'))
you'll see that it returns 4
! So there are 3 not visible and only one visible input
. You can try to use index to handle appropriate element:
driver.find_elements_by_xpath('//input[@id="contestant[name]"]')[3].send_keys("John")
Post a Comment for "Selenium Element Is Not Visible Exception On Already Triggered Area"