0

我得到会话 ID 为空。调用 quit() 后使用 WebDriver?异常当任何测试用例的运行模式设置为 NO。我正在使用 TestNg 框架。

如果所有测试用例的 Runmode 都是 Yes 那么它工作正常。

我为套件创建了一个 Java 类,并为各个测试用例创建了多个内部类。

下面是我的代码。

    package com.smoke;

    import org.testng.SkipException;
    import org.testng.annotations.BeforeMethod;
    import org.testng.annotations.BeforeTest;
    import org.testng.annotations.Listeners;
    import org.testng.annotations.Test;
    import com.util.TestUtil;

    @Listeners(com.listener.ListenerTestNG.class)

    public class Testxls extends TestSuiteBase {    
        @BeforeMethod
        public void checkTestSkip() {    
        APP_LOGS.debug("Checking Runmode of Testxls Test Case");    
      if(!TestUtil.isTestCaseRunnable(smoke,this.getClass().getSimpleName())) {
      APP_LOGS.debug("Skipping Test Case" + this.getClass().getSimpleName() + " as runmode set to NO");
      throw new  SkipException("Skipping Test Case as runmode is set to NO");
  }
        }
        @BeforeTest
        public void testData() {
            try {
                objData=smoke.getTestCaseData("DataSheet", "Testxls");
            } catch (Exception e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
            System.out.println(objData);

        }
        @Test()
        public void f() throws Exception {
            openBrowser();//Calling method to open browser
            Thread.sleep(5000);
            tearDown(); //calling method to quit browser

        }
    }

@Listeners(com.listener.ListenerTestNG.class)
class Testxls1 extends TestSuiteBase {

    @BeforeMethod
    void checkTestSkip()    {
        System.out.println(this.getClass().getSimpleName());
        APP_LOGS.debug("Checking Runmode of Testxls1 Test Case");
        if(!TestUtil.isTestCaseRunnable(smoke, this.getClass().getSimpleName())) {
            APP_LOGS.debug("Skipping Test Case" + this.getClass().getSimpleName() + " as runmode set to NO");
            throw new  SkipException("Skipping Test Case as runmode is set to NO");
        }
    }
    @BeforeTest
    void testData() {
        try {
            objData=suite_smoke.getTestCaseData("DataSheet", "Testxls1");
        } catch (Exception e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        System.out.println(objData);

    }
    @Test()
    void f() throws Exception {
        openBrowser();


    }
}

请找到测试用例和数据文件截图。

在此处输入图像描述

任何帮助表示赞赏

谢谢维平

4

1 回答 1

0

TestSuiteBase 中实现了什么?您很可能在所有测试中都在同一个驱动程序实例中使用,因此在一个测试中退出时出现异常并仍在另一个测试中使用。检查您是否使用静态网络驱动程序。

更好的方法是根据您的浏览器要求创建返回 webdriver 实例的方法,并在测试开始时获取它,将其传递给该测试中的所有方法并最终退出。

于 2018-07-24T15:44:02.610 回答