I'm a newbie with Selenium and am using the Selenium IDE, so I'm ending up with table structures like this:
<table cellspacing="1" cellpadding="1" border="1" name="SELENIUM-TEST">
<thead>
<tr class="title">
<td colspan="3">UI Basic Interaction</td>
</tr>
</thead>
<tbody>
<tr>
<td>store</td>
<td><urltool portal_url="" at=""></urltool></td>
<td>base_url</td>
</tr>
...
<tr>
<td>waitForPageToLoad</td>
<td><br></td>
<td></td>
</tr>
<tr>
<td>waitForElementPresent</td>
<td>//div[@id="global-panel"]</td>
<td></td>
</tr>
</tbody>
</table>
I'm required to run this test offline, that means I should not simulate the browser being offline, but really "unplug" and then run the tests.
Question:
I'm not really finding a lot of information on Selenium and offline usage, so is this at all possible when using the Selenium IDE? Thanks for some pointers!