如何在testng eclipse中写两组?

时间:2014-10-01 05:09:17

标签: testng

我开始在eclipse中学习testng(Selenium webdriver)。我有一个疑问,如何使用单个类和单个excel sheel中的两个组从excel表中读取数据。它是否可以在testng framework.please帮助我和提前谢谢

@Test
(groups = {""} , dataProvider="" , description = "")
public void aaaa(String GroupName, String GroupDescription)
{
     try
     {
     }
     catch(Throwable t)
     {
     }  

    @Test
    (groups = {""} , dataProvider="" , description = "")
    public void print1(String , String )
    {
    }
    try
    {   
    }
    catch(Throwable t)
    {
    }
}

0 个答案:

没有答案