我可以在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+'