admin管理员组文章数量:1128541
I have class
public class BaseTest {
public WebDriver driver;
@BeforeMethod
public void setup(
driver = new FireFoxDriver();
}
@AfterMethod
public void teardown() {
driver.quit();
}
}
tests are in extended class
public class Tests extends BaseTest{
@Test
public void first() {
System.identityHashCode(driver);
}
@Test
public void second() {
System.identityHashCode(driver);
}
}
testng xml:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM ".0.dtd">
<suite name="Testing Suite Selenium" parallel="methods" thread-count="5">
<test name="regression">
<classes>
<class name="Tests"/>
</classes>
</test>
</suite >
I try to execute methods parallel but I see in console that driver object is not unique per test execution. Because of that tests are failing. How I can get unique object per each test instance?
本文标签: javatestng parallel execution unique object creationStack Overflow
版权声明:本文标题:java - testng parallel execution unique object creation - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1736716773a1949241.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论