Robot Framework robotframework-selenium2library 1.8.0 -
for reason script failing halfway due element not found..however if add sleep 2 under each command script passed. ideas? tried xpath,css, & sizzle.
error element locator 'excel-link' did not match elements.
if happens browsers (chrome,ff, & safari), ideas or suggestions?
thanks
the problem you're trying access elements on page before page has finished rendering. common mistake when writing automated tests of web pages.
the common solution wait element available before try use it. example:
*** test cases *** example wait page contain element excel-link click link excel-link
Comments
Post a Comment