I recently started working on creating Selenium tests using the Firefox IDE plugin. This is a new venture for me as the client requested it while I'm in the process of refactoring some code to ensure everything is still functioning correctly.
There's an element that changes size through a script, and my task is to test its height. The snippet from my current Selenium source looks something like this:
<table cellpadding="1" cellspacing="1" border="1">
<thead>
<tr><td rowspan="1" colspan="3">New Test</td></tr>
</thead><tbody>
<tr>
<td>open</td>
<td>/landing-page</td>
<td></td>
</tr>
<tr>
<td>click</td>
<td>css=a.facebook.</td>
<td></td>
</tr>
</tbody></table>
My requirement is to verify if an element's height exceeds a specific value. How can I accomplish this after clicking on the .facebook
link?