I need to extract an Id (100000010) in an html response which is a table as shown below:
<tr>
<tr>
<td>
<B>
100000010
</B>
</td>
</tr>
</tr>
Following xpath extractor to get this:
//*[@id="screenlet_1_col"]/table/tbody/tr[2]/td[1]/b
which is exactly what chrome gave me. But I am not able to get the value in the variable in XPath extractor.
Any help?