My Website contains a Table with two rows:
<table>
<tr><td>Content</td><td>Content</td></tr>
<tr><td>Content</td><td>Content</td></tr>
</table>
And i want to wait as long the Table was updated by JS and contains now three rows:
<table>
<tr><td>Content</td><td>Content</td></tr>
<tr><td>Content</td><td>Data</td></tr>
<tr><td>Content</td><td>Content</td></tr>
</table>
Selenium should find the second row with the Second column and get the Data. How i can realize that?