Working on a grid (table) that some columns have a text that is actually a link to the detail of something using a <a href="url">
tag.
Using await page.click(my_target);
was working perfectly for my main tables but in this case, the click event doesn't do anything:
<table>
<tbody>
<tr><td>
<a ng-show="true" href="/edit/001">Some text</a>
</tr></td>
</tbody>
</table>
Looks like this:
中无法正常工作