Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in DevOps and Agile by (19.7k points)

I'm using the Selenium IDE for Firefox and searching for a wait command. My problem is that I want to test a website with an embedded external map. This external map needs 3-5 seconds to load.

My commands:

open /Page/mysite.html

//Wait Command? (5 seconds)

ClickAndWait link=do something

1 Answer

0 votes
by (62.9k points)

This will delay things for 5 seconds:

Command: pause

Target: 5000

Value:

This will delay things for 3 seconds:

Command: pause

Target: 3000

Value:

Documentation:

http://release.seleniumhq.org/selenium-core/1.0/reference.html#pause

 

Browse Categories

...