Skip to content Skip to sidebar Skip to footer

Unable To Locate Using Find Element By Link

Newbie in testing. I generated a test case using Selenium, and then exported it as a Python script. Now, when I try to run that in terminal, I get following error: raise exception_

Solution 1:

This may occur when selenium is trying to find the link while your application hasn't rendered it yet. So you need to make it wait until the link appears:

browser.implicitly_wait(10)

The answer which helped me is here.

Post a Comment for "Unable To Locate Using Find Element By Link"