I have the following markup. How do I find the number of tr
s with the class abc
in the table?
<html>
<body>
<table>
<tr class='abc'>
<td> i am from bd </td>
<td> i am from bd </td>
<td> i am from bd </td>
</tr>
</table>
</body>
</html>