爲什麼Selenium WebDriver
命令不會顯示在我的@Test(priority=2)
上?每次我在@Test(priority=1)
測試進入硒網絡驅動器命令它只是不使用其他測試 -Selenium Web Driver和TESTNG
public class TestingTestNG {
@Test(priority=1)
public void TestingTestNG() throws InterruptedException{
// Import FireFox Driver
WebDriver driver = new FirefoxDriver();
// Open up Sand Page
driver.get("****");
// Enter Usename and Password
// User
driver.findElement(By.id("userId")).sendKeys("****");
Thread.sleep(3000);
// Password
driver.findElement(By.id("password")).sendKeys("****");
Thread.sleep(3000);
// Click Login Button
driver.findElement(By.id("loginButton")).click();
}
@Test(priority=2)
public void test2(){
driver.
驅動程序的下拉列表。不顯示,只顯示它是一個類...任何建議?您driver
結果在的
[硒的webdriver和TestNG](http://stackoverflow.com/questions/37838987/selenium-webdriver-and-testng)的可能的複製 – Andrejs