- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在下面的第 33 行代码中,在 wait.until 附近出现以下错误消息
该行有多个标记 - 无法解析 com.google.common.base.Function 类型。它是从所需的 .class 文件间接引用的 - FluentWait类型中的方法until(Function)不适用于 参数(预期条件)
package MPA;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.FindBy;
import org.openqa.selenium.support.PageFactory;
import org.openqa.selenium.support.ui.ExpectedConditions;
import org.openqa.selenium.support.ui.WebDriverWait;
public class LoginhelperClass {
WebDriver driver;
@FindBy(xpath = "//input[@ng-model='login.username']")
private WebElement userName;
@FindBy(xpath = "//input[@type='password']")
private WebElement Password;
@FindBy(xpath = "//input[@type='submit' and @value='Sign In']")
private WebElement SignIn;
@FindBy(xpath = "//span[@class='icon-avatar-round']")
private WebElement Avatar;
public LoginhelperClass(WebDriver driver) {
this.driver = driver;
PageFactory.initElements(driver, this);
}
public void logIn(String uName, String Pswd) throws InterruptedException {
WebDriverWait wait=new WebDriverWait(driver,7);
wait.until(ExpectedConditions.visibilityOf(userName));
userName.sendKeys(uName);
Password.sendKeys(Pswd);
SignIn.click();
try {
Thread.sleep(4000);
if (Avatar.isDisplayed()) {
System.out.println("Login Successfull: " + uName);
} else {
System.out.println("Login failure check the credentials: " + uName);
}
} catch (Exception e) {
System.out.println(e.getMessage());
}
}
}
package MPA;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.FindBy;
import org.openqa.selenium.support.PageFactory;
import org.openqa.selenium.support.ui.ExpectedConditions;
import org.openqa.selenium.support.ui.WebDriverWait;
public class LoginhelperClass {
WebDriver driver;
@FindBy(xpath = "//input[@ng-model='login.username']")
private WebElement userName;
@FindBy(xpath = "//input[@type='password']")
private WebElement Password;
@FindBy(xpath = "//input[@type='submit' and @value='Sign In']")
private WebElement SignIn;
@FindBy(xpath = "//span[@class='icon-avatar-round']")
private WebElement Avatar;
public LoginhelperClass(WebDriver driver) {
this.driver = driver;
PageFactory.initElements(driver, this);
}
public void logIn(String uName, String Pswd) throws InterruptedException {
WebDriverWait wait=new WebDriverWait(driver,7);
wait.until(ExpectedConditions.visibilityOf(userName));
userName.sendKeys(uName);
Password.sendKeys(Pswd);
SignIn.click();
try {
Thread.sleep(4000);
if (Avatar.isDisplayed()) {
System.out.println("Login Successfull: " + uName);
} else {
System.out.println("Login failure check the credentials: " + uName);
}
} catch (Exception e) {
System.out.println(e.getMessage());
}
}
}
最佳答案
您看到的错误如下:
Multiple markers at this line - The type com.google.common.base.Function cannot be resolved. It is indirectly referenced from required .class files - The method until(Function) in the type FluentWait is not applicable for the arguments (ExpectedCondition)
让我们分析一下代码中发生了什么。
在页面对象
中,您已将WebElement
定义为:
@FindBy(xpath = "//input[@ng-model='login.username']")
private WebElement userName;
继续前进,您已尝试在方法中使用 WebElement
:
public void logIn(String uName, String Pswd) throws InterruptedException {
WebDriverWait wait=new WebDriverWait(driver,7);
wait.until(ExpectedConditions.visibilityOf(userName));
//
}
所以基本上我们在这里试图等待间接引用 Angular WebElement
userName 的可见性取决于属性 ng-model
。在这种情况下,我们永远无法确定在方法 userName 中引用 WebElement
时是否会强制引用not NULL 值。它也可能是NULL
。
现在让我们看一下visibilityOf
的方法定义,它的定义为:
visibilityOf(WebElement element)
An expectation for checking that an element, known to be present on the DOM of a page, is visible.
很明显,visibilityOf
方法需要WebElement
的直接引用。因此,在 userName
缺乏确定值(not NULL)的情况下,WebDriverWait
这是 FluentWait
的变体,显示错误。
关于java - wait.until(ExpectedConditions.visibilityOf(userName)) 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47656980/
在下面的第 33 行代码中,在 wait.until 附近出现以下错误消息 该行有多个标记 - 无法解析 com.google.common.base.Function 类型。它是从所需的 .clas
根据 Protractor 的 visibiityOf() API:可见性是指元素不仅被显示,而且高度和宽度都大于0。 我有一个返回 50 行数据的搜索页面。第 50 行在页面底部不可见,只有多次滚动
我想对两个元素使用 wait.until(ExpectedConditions)。我正在运行一个测试,我需要 WebDriver 等待 Element1 OR Element2 出现。然后我需要选择先
我严重陷入困境。我遇到过时的元素引用问题 7/10 次。我的应用程序在操作完成后显示一个配置对话框。此消息出现一秒钟左右。我想阅读conf对话框的文本。 var confDial= element(b
我正在尝试使用 WebDriver 的 FluentAPI,但对可用的选择有点困惑。我想等待一个元素变得可见。我知道有很多方法可以做到这一点,但我想具体了解以下两种方法之间的区别: (1)new F
我是一名优秀的程序员,十分优秀!