Unable to locate using find element by link
- by First Rock
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_class(message, screen, stacktrace)
NoSuchElementException: Message: u'Unable to locate element: {"method":"link
text","selector":"delete"}'
I am using the command generated by Selenium i.e
driver.find_element_by_link_text("delete").click()
The reason for the error I believe is that the link "delete" in my web page is seen only when I click on a particular line to be deleted. So I guess it is being unable to locate the link. Please suggest what alternative measure could I use to locate and click on the "delete" link.
Thanks in Advance:)