I have been looking around but cant seem to find a solution.
I want to do the following:
Assert/Verify an element is present If the element is present go to label.
i have tried:
<tr>
<td>verifyElementPresent</td>
<td>css=#error_div > div.content</td>
<td>errorPresent</td>
</tr>
<tr>
<td>gotoIf</td>
<td>"${errorPresent}" == "true"</td>
<td>FAIL</td>
</tr>
.. BLa bla some other steps
<tr>
<td>label</td>
<td>FAIL</td>
<td></td>
</tr>
I have tried changing if to assert element but no luck.
Any suggestions?