java selenium通过带有变量的xpath查找元素

时间:2017-06-08 22:58:07

标签: java xpath

我可以在xpath中使用变量吗?例如:

findElement(By.xpath("@class='featured-item'"]"));

它正在运作,但现在却没有。因为类包含每个项目的变量。例如:

 findElement(By.xpath("@class='featured-item 1'"]"));
 findElement(By.xpath("@class='featured-item 2'"]"));
 findElement(By.xpath("@class='featured-item 3'"]"));
 ...

当我使用@ class ='featured-item'时,它找不到项目,因为类名有一个变量。有没有像:

  @class='featured-item \\d+'

0 个答案:

没有答案