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
  • 773
  • 2
  • 13
  • 35

1 Answers1

2

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

JeffC
  • 19,228
  • 5
  • 29
  • 49