I have seen quite a few replies but for some reason NONE of them work and they always return all the children not just FIRST level
Here is one such answer: How to get first layer sub elements only in python selenium
They all suggest a CSS selector as in using nth-child(##)
Here is my data:
<**table**>
<**tbody**>
<**tr**> // I want to only get this
<**td**>td 1</td>
<**tr**><td>Nested 1</td></**tr**> // don't want this tr
<**td**>td 2<**/td**>
<**tr**><**/tr**> // don't want this
<**/tr**>
<**tr**> // I want to only get this
<**td**>td 3<**/td**>
<**tr**><**/tr**> // don't want this
<td>td 4</td>
<tr></tr> // don't want this
</tr>
<**/tbody**>
<**/table**>