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 /…
I am writing tests for my site using Selenium IDE and I am having trouble with having selenium click on a button using preceding-sibling
<td>
<div class="btn-group">
<button class="btn btn btn-danger block" title="…
With "HTML" Selenium tests (created with Selenium IDE or manually), you can use some very handy commands like WaitForElementPresent or WaitForVisible.
<tr>
<td>waitForElementPresent</td>
<td>id=saveButton</td>
<…