All, I\'m needing a little assistance with Selenium waits. I can\'t seem to figure out how to wait for an element to be ready.
The element that I am needing to wait
Here is a link to the 'waiting' section of the Python Selenium docs: http://selenium-python.readthedocs.io/waits.html#explicit-waits
You wait should look like this:
element = WebDriverWait(driver, 10).until( EC.visibility_of((By.XPATH, ".//*[@id='line']/div[1]/a")) )