TestNG中的DataProvider从excel传递数据

时间:2013-01-17 19:48:31

标签: eclipse excel selenium-webdriver testng testng-dataprovider

我开始使用Eclipse和TestNG学习Selenium2(WebDriver)。我有一个关于DataProvider的问题。我有一个登录页面,例如用户,密码和登录按钮。我在TestNG上写了一个测试。我已经将pageobject用于UI对象(具有单独的类)并在另一个类中使用实际测试。

这里glogin是一个类,login是完成查找元素和发送键的函数,这个函数在另一个带有TestNG注释的类gtest(主测试)中调用。

我在主脚本中访问该类,它将获取值。

@test(Dataprovide = "test")
public void glogin(String user, String pass)
{
  glogin log1 = new login;
  log1.login(user,pass);
}

我有以下excel表

user      pass    
John      Smith      
Carson    Black    
Carla     ck23
test      test4

当我使用dataprovider并从excel表中获取数据作为数组并在Test中使用它时,会显示以下错误:

org.testng.TestNGException: 

The data provider is trying to pass 4 parameters but the method plus.gmail#glogin takes 2
    at org.testng.internal.Invoker.injectParameters(Invoker.java:1337)
    at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1225)
    at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:128)
    at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:111)
    at org.testng.TestRunner.privateRun(TestRunner.java:767)
    at org.testng.TestRunner.run(TestRunner.java:617)
    at org.testng.SuiteRunner.runTest(SuiteRunner.java:334)
    at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:329)
    at org.testng.SuiteRunner.privateRun(SuiteRunner.java:291)
    at org.testng.SuiteRunner.run(SuiteRunner.java:240)
    at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)
    at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86)
    at org.testng.TestNG.runSuitesSequentially(TestNG.java:1203)
    at org.testng.TestNG.runSuitesLocally(TestNG.java:1128)
    at org.testng.TestNG.run(TestNG.java:1036)
    at org.testng.remote.RemoteTestNG.run(RemoteTestNG.java:111)
    at org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:204)
    at org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:175)

非常感谢任何帮助。

以下是使用Dataprovider和

注释的方法的代码
    @DataProvider(name="test")
        public Object[][] createdata1()throws Exception
        {
            Object[][] retobj = getexcel();
            return retobj;              
        }

        private String[][] getexcel() throws Exception
        {
            // TODO Auto-generated method stub

            String[][] tabarray = null;
            try {
                Workbook wb1 = Workbook.getWorkbook(new 

File("F:/testdata.xls"));

                Sheet sheet = wb1.getSheet("userlogin");

                Cell tablestart = sheet.findCell("login");

                int startrow = tablestart.getRow();
                int startcol = tablestart.getColumn();

                Cell tableend = sheet.findCell("login",startcol+1,startrow+1, 

100, 64000, false);

                int endrow = tableend.getRow();
                int endcol = tableend.getColumn();

                System.out.println("startRow="+startrow+", endRow="+endrow+", 

" + "startCol="+startcol+", endCol="+endcol);

                 tabarray = new String[endrow - startrow + 1][endcol - 

startcol + 1];

                int ci = 0;
                for(int i = startrow +1 ;i<endrow;i++,ci++)
                {

                    int cj = 0;
                    for(int j = startcol + 1;j<endcol;j++,cj++)
                    {
                        tabarray[ci][cj] = sheet.getCell(j, 

i).getContents();
                        System.out.println(tabarray[ci][cj]);

                    }   
                }

            } catch (BiffException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }

            return tabarray;
        }

test(Dataprovider = "test")
public void glogins(String user, String pass)
{
  glogin log1 = new glogin(driver);
  log1.login(user,pass);
}

当我执行测试时,我从excel收到数据

john
smith
carson
Black
carla
ck23
test
test4

作为输出

4 个答案:

答案 0 :(得分:0)

错误信息不是不言自明的吗?

The data provider is trying to pass 4 parameters but the method plus.gmail#glogin takes 2

使用调试器并找出数据提供者为什么返回4个参数而不仅仅是2个参数。

答案 1 :(得分:0)

使用

tabarray = new String[endrow - 1][endcol - 1]; instead of //tabarray = new String[endrow - startrow + 1][endcol - startcol + 1];

因为您打算只返回2 * 2数组

答案 2 :(得分:0)

替换

tabarray = new String[endrow - startrow + 1][endcol - startcol + 1];

tabarray = new String[endrow - startrow - 1][endcol - startcol - 1];

答案 3 :(得分:-1)

我同意Kalyan发布的回复;原因是数据提供者excel表的第一列和最后一列也被函数计入参数/参数;因此,请使用tabArray=new String[endRow-startRow-1][endCol-startCol-1];希望这有助于和快乐的测试...