0

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!

Chuchoo
  • 823
  • 2
  • 17
  • 36

1 Answers1

2

You should be able to use "a[class='']".

JeffC
  • 22,180
  • 5
  • 32
  • 55