I must be overlooking something very obvious. What's wrong with this XPath expression? I want to get a count of table rows which match a regex for id?
selenium.getXpathCount("//tr[matches(@id,'data-row-\\d+')]");
I'm getting:
com.thoughtworks.selenium.SeleniumException: ERROR: Invalid xpath [2]: //tr[matches(@id,'data-row-\d+')]
Here's sample html:
<table>
<tbody>
<tr id="data-row-0"><td>foo</td></tr>
<tr id="data-row-1"><td>bar</td></tr>
<tr id="data-row-2"><td>baz</td></tr>
</tbody>
</table>