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

Popular posts from this blog

javascript - Confirm a form & display message if form is valid with JQuery -

Retrieving ETA (estimated time of arrival) with Google Distance Matrix API and public transit as transport mode -

android - ConstraintLayout: Realign baseline constraint in case if dependent view visibility was set to GONE -