我在eclipse中有一个用于硒测试的项目。 我的项目包含Test.class和Utility.class
在我的Utility.class中,我有一个方法:
public static void UsernameElement(){
try {
driver.findElement(By.xpath(Component._usernamef)).isDisplayed();
System.out.println(" username field is displayed [TEST PASSED]");
} catch (NoSuchElementException e) {
System.out.println("Username field is not displayed [TEST FAILED]");
} finally {
System.out.println("");
}
}
然后在我的Test.class中,我调用这样的方法: Utility.UsernameElement();
然后我收到了这个错误: “对于类型Utility”
,未定义UsernameElement()方法我不知道我应该在Utility.Username()中放入括号内; 请有人给出一个线索。谢谢