Using XPath and the HTML Agility Pack, I need to select the destination
text using color:#ff00ff
.
My HTML looks like this:
<table>
<tr style="color:#ff00ff">
<td></td>
</tr>
<tr>
<td>destination</td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td>not destination</td>
</tr>
</table>