getTableRows

Description

Gets the number of rows in a table for use in assert, verify, waitFor, etc.

See the related Selenium IDE Extension.

Example of Use

<table id="tableWith3Rows">
    <tr>
        <td>1</td>
    </tr>
    <tr>
        <td>2</td>
    </tr>
    <tr>
        <td>3</td>
    </tr>
</table>
<table id="tableWithNoRows">
</table>
verifyTableRows tableWith3Rows 3
verifyTableRows tableWithNoRows 0

License

Public domain

Download

getTableRows.zip

Enter labels to add to this page:
Please wait 
Looking for a label? Just start typing.
  1. Aug 26, 2008

    Shashi says:

    Is it possible to add a full instruction on how to use the extension for each cl...

    Is it possible to add a full instruction on how to use the extension for each client driver. I'm trying to use it for selenium perl client driver and its not working.