Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 a 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
share|improve this question

5 Answers

up vote 15 down vote accepted

Use the pause command. Set speed to fastest (Actions --> Fastest), otherwise it won't work.

share|improve this answer
Thank you! I insered the command, but Selenium doesn´t pause. Command = pause, Value = 10000 – LaPhi Jul 15 '11 at 7:45
7  
Use Target instead of Value. Command = Pause, Target = 1000. – Khairul Mar 12 '12 at 3:39
@Khairul glad you added that comment, it's been driving me mad as to why pause() won't work! – cchana May 18 '12 at 11:13
Speed has no bearing on the pause command, it is as @Khairul says instead: Put it in the target. – Shah Oct 24 '12 at 14:50
selenium does not sleep or pause command...:( – ChanGan Jan 7 at 10:30

This will delay things for 3 seconds:

Command: pause
Target: 3000
Value:

share|improve this answer

Your best bet is probably waitForCondition and writing a javascript function that returns true when the map is loaded.

share|improve this answer
Thanks for your comment! But is there now OOTB way to wait x seconds? – LaPhi Jul 14 '11 at 14:49
1  
No, there's no direct way to just wait for x seconds. See the complete list of supported commands. – highlycaffeinated Jul 14 '11 at 14:52

This will do what you are looking for in C# (WebDriver/Selenium 2.0)

var browser = new FirefoxDriver();
var overallTimeout = Timespan.FromSeconds(10);
var sleepCycle = TimeSpan.FromMiliseconds(50);
var wait = new WebDriverWait(new SystemClock(), browser, overallTimeout, sleepCycle);
var hasTimedOut = wait.Until(_ => /* here goes code that looks for the map */);

And never use Thread.Sleep because it makes your tests unreliable

share|improve this answer
+1 for thread safety – Phil Mar 8 at 11:22

The pause command can be used directly in the ide in the html format.

If using java or C you could use Thread.sleep(5000). Time is in milliseconds. Other languages support "sleep 5" or time.sleep(5). you have multiple options for just waiting for a set time.

share|improve this answer
1  
Thread.Sleep is never a good idea and that's why Selenium provides wait primitives. If you use them you can specify much higher timeout value which makes tests more reliable without slowing them down as the condition can be evaluated as often as it's required, eg. every 50ms. – Pawel Pabich Jul 17 '11 at 7:06
My response in the thread.sleep is only related to answer the question for how to make it wait in the ide. As pause gets translated into thread.sleep when you convert from html to java or c in the ide. – rattlerbred Jul 18 '11 at 13:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.