如何检查硒中存储变量的值?

时间:2015-12-14 11:16:30

标签: java selenium selenium-webdriver selenium-rc

我想获得存储值并断言该值。但目前我无法断言这个价值。我试过以下方式,

selenium.storeAllButtons("var1");
selenium.verifyAllButtons("${var1}",selenium.getAllButtons());

但上述断言失败了。 提前谢谢。

1 个答案:

答案 0 :(得分:1)

没有方法" storeAllButtons"在WebDriver java代码绑定中。

您需要做的是列出以下元素:

List<WebElement> items = driver.findElements(By.cssSelector("button"));

然后,您必须迭代列表并对符合您期望的每个元素进行断言。