我有几个<a
元素。但其中只有一个具有子字符串“long”作为属性的值href
<a class="ggg" href= "very_lpng string" > name1 </a>
<a class="ggg" href= "verylong string" > name2 </a> // The one that I need
<a class="ggg" href= "very ling string" > name3 </a>
<a class="ggg" href= "very ng string" > name4 </a>
...................
我想单击链接中包含子字符串“long”的href。我怎样才能做到这一点?
PS: driver.findElement(By.partialLinkText("long")).click();
没有帮助,因为它正在寻找不在其中的子字符串“long”href