The selector you need is
table.myTable > tbody > tr:first-child > td:first-child
There is an implicit TBODY element in there, even though you don’t have it in the code.
The selector you need is
table.myTable > tbody > tr:first-child > td:first-child
There is an implicit TBODY element in there, even though you don’t have it in the code.