在java中调用selenium测试方法

时间:2016-08-18 22:55:41

标签: java selenium

我在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()中放入括号内; 请有人给出一个线索。谢谢

0 个答案:

没有答案