Having trouble retrieving text from 'td' tags using casperjs with the following html code:
<div class="div_table_body">
<table class="part_listing">
<tr><td>sometext</td></tr>
<tr><td>sometext2</td></tr>
...
</table>
</div>
I attempted to extract the text within the 'td' tags using casperjs but I keep getting a NULL value. Can someone please help me identify where the issue lies in my code?