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

c# - Update a combobox from a presenter (MVP) -

How to understand 2 main() functions after using uftrace to profile the C++ program? -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -