环境:Eclipse,Selenium-webdriver 2.31,Junit 4。
我正在修改一些脚本,现在执行此代码片段时,chrome的浏览器启动了两次,这很明显,但不确定如何仅启动chrome并执行测试方法。请纠正我。
多数民众赞成在我的LoginPage类中,传递参数。如果我不初始化WebDriver实例,则将弹出NPE Exception。
代码:
@RunWith(Parameterized.class)
public class LoginPage{
WebDriver driver = new ChromeDriver();
String username;
String password;
public LoginPage(String username, String password)
{
this.username = username;
this.password = password;
}
@Test
public void loginAs(){
user.sendKeys(this.username);
pass.sendKeys(this.password);
}
}
现在,多数民众赞成在套房类,其中提到套房类。链接类是另一类。
TestSuite类
代码:
@RunWith(Suite.class)
@SuiteClasses({
LoginPage.class, Link.class
})
public class LoginTest{
static WebDriver driver;
@BeforeClass
public static void start()throws Exception
{
System.setProperty("webdriver.chrome.driver", "E:/Selenium/lib/chromedriver.exe");
driver = new ChromeDriver();
driver.get("URL");
driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
System.out.println("Before Class");
}
@AfterClass
public static void teardown()
{
//
}
最佳答案
您正在代码中创建2个chrome实例:首先是@BeforeClass
@BeforeClass
public static void start()throws Exception
{
System.setProperty("webdriver.chrome.driver", "E:/Selenium/lib/chromedriver.exe");
driver = new ChromeDriver();
当您创建LoginPage对象时,再次选择。
public class LoginPage{
WebDriver driver = new ChromeDriver();
因此,根据您的需要,您必须删除其中之一。
我真的看不到用户和传递变量的分配位置,但是假设它们是webelements,则可能是从驱动程序获得的。因此,如果不在LoginPage中启动驱动程序,则确实会得到nullpointer。
如果仍然需要在@BeforeClass中启动驱动程序,并且想在代码中使用相同的驱动程序实例,则可以使用此方法。
@RunWith(Suite.class)
@SuiteClasses({
LoginPage.class, Link.class
})
public class LoginTest{
static WebDriver driver;
public WebDriver getWebDriver(){
return driver; }
@BeforeClass
......
您可以在登录的构造函数中调用它:
WebDriver driver;
public LoginPage(String username, String password)
{
this.username = username;
this.password = password;
driver = LoginTest.getWebDriver();
}