我无法使用testNG更改selenium中方法的名称

时间:2016-10-31 18:44:36

标签: java eclipse selenium testng

我最近开始工作selenium和testng。我有一套在我到这里时写的测试。

public class Teams {
    @BeforeClass
      public void setUp(){
    }

    @Test
    public void ProfilePage() throws InterruptedException {
    // elegance, 
    }

    @Test
    public void TeamFeed() throws InterruptedException{
    // truly
    }

    @AfterClass
    public void logout(){
    // beautiful code  
    }
}

更改方法的名称" ProfilePage()"打破脚本。输出是一个空的浏览器窗口,其中包含"数据:,"在地址栏中。

我不明白为什么更改此方法名称会破坏所有内容。我可能有一个非常愚蠢的时刻。

0 个答案:

没有答案