In my Selenium test I need to grab all the links inside a table that has empty class as shown below.
<td>
<a class="" href="" data-date="2016-11-18T00:00:00-05:00">18</a>
</td>
How do i achieve this using cssSelector ?
Thank You!
In my Selenium test I need to grab all the links inside a table that has empty class as shown below.
<td>
<a class="" href="" data-date="2016-11-18T00:00:00-05:00">18</a>
</td>
How do i achieve this using cssSelector ?
Thank You!
You should be able to use "a[class='']"
.