I'll try to be quite objective:
How do I get the value inside a tag that is within 200 million other childs?
(assuming I can not make changes to the code, because it's the code for a site that I need to filter to collect specific data):
ex:
<div>
<div>
<div></div>
<div>
<div></div>
<div></div>
<h1></h1>
<div>
<div>
<div>
<h1></h1>
<div>
<div></div>
<div></div>
<table>
<tbody>
<tr></tr>
<tr></tr>
</tbody>
</table>
<div>
<div></div>
<div></div>
<div>
<div>
<div></div>
<div>
<div>
<div></div>
<table>
<tbody>
<tr></tr>
<tr></tr>
</tbody>
</table>
<div></div>
...........
For example, I need to get the information from the second table (inside the TR tags) ... assuming there is no id or class, how do I get this information?
Thank you.