Quantcast
Channel: Selenium IDE - Command to wait for 5 seconds - Stack Overflow
Browsing all 12 articles
Browse latest View live

Image may be NSFW.
Clik here to view.

Answer by Bogdan for Selenium IDE - Command to wait for 5 seconds

In case when you use Chrome exctantion you can set timeout in 'Target'. It helps for me.

View Article



Answer by TechSingh for Selenium IDE - Command to wait for 5 seconds

In Chrome, For "Selenium IDE", I was also struggling that it doesn't pause. It will pause, if you give as below:Command: pause Target: blankValue: 10000This will pause for 10 seconds.

View Article

Answer by Klendathu for Selenium IDE - Command to wait for 5 seconds

One that I've found works for the site I test is this one: waitForCondition | selenium.browserbot.getUserWindow().$.active==0 | 20000Klendathu

View Article

Answer by the_average_average for Selenium IDE - Command to wait for 5 seconds

This will wait until your link has appeared, and then you can click it.Command: waitForElementPresentTarget: link=do somethingValue:

View Article

Answer by george for Selenium IDE - Command to wait for 5 seconds

Before the command clickAndWait add the following code so the script will wait until the specific link to be visible:<tr><td>waitForVisible</td><td>link=do...

View Article


Answer by fedorqui for Selenium IDE - Command to wait for 5 seconds

For those working with ant, I use this to indicate a pause of 5 seconds:<tr><td>pause</td><td>5000</td><td></td></tr>That is, target: 5000 and value...

View Article

Image may be NSFW.
Clik here to view.

Answer by JustBeingHelpful for Selenium IDE - Command to wait for 5 seconds

This will delay things for 5 seconds:Command: pauseTarget: 5000Value:This will delay things for 3 seconds:Command: pauseTarget:...

View Article

Answer by Pawel Pabich for Selenium IDE - Command to wait for 5 seconds

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...

View Article


Answer by rattlerbred for Selenium IDE - Command to wait for 5 seconds

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)....

View Article


Answer by Adam Prax for Selenium IDE - Command to wait for 5 seconds

Use the pause command and enter the number of milliseconds in the Target field.Set speed to fastest (Actions --> Fastest), otherwise it won't work.

View Article

Answer by highlycaffeinated for Selenium IDE - Command to wait for 5 seconds

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

View Article

Selenium IDE - Command to wait for 5 seconds

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...

View Article
Browsing all 12 articles
Browse latest View live




Latest Images