0

我正在使用 selenium 网络驱动程序,目前正在自动生成注册表单。有各种字段,例如用户名、密码等,我们必须填写详细信息并单击条款和条件复选框,然后启用帐户创建按钮。

现在 java 脚本存在一些问题,我对创建帐户按钮的所有断言都失败了。有什么办法可以解决这个问题吗?

4

1 回答 1

3

可能的解决方案:

将 getAttribute() 函数应用于您需要的元素。并将获得的数据与预期数据进行比较:

WebElement button = driver.findElement(By.xpath(..blablblalb...));
String color= button.getAttribute("color");
//verifyinh that color is that of expected
Assert.assertTrue(color.contains("red"));
于 2013-10-23T10:49:59.667 回答