Is there a way for selenium to create something along these lines:
verifyXpathCount //div[@class='display']/table/tbody/tr <=10
i.e. I want to verify that table contains less or equal 10 <tr> items inside body of specified table.
Or is this beyond the scope of Selenium IDE (version 1.5)?
Here it is:
Basically you are storing the number of elements found by the xpath expression to
myCountand then you can check that an arbitrary expression using that number evaluates to true (in this case we are checking that the number is less than 10).