我得到会话 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();
}
}
请找到测试用例和数据文件截图。
任何帮助表示赞赏
谢谢维平