0

我是 webdriver 的新手,需要以下指导

我正在寻找的是:

如果(登录名 || 密码)webelement 不存在,则将出现关于不存在的元素的消息

错误显示的内容

The operator || is undefined for the argument type(s) org.openqa.selenium.WebElement, org.openqa.selenium.WebElement

最后使用 Junit

4

1 回答 1

1

你只是想要:

if(Login.isDisplayed() == false || Password.isDisplayed() == false )
{
   ...
}

如果没有,请查看此处此处此处此处的示例。

于 2013-09-22T09:07:47.797 回答