- Hana
- Posts : 1
Join date : 2015-05-06
how to continue my selenium tests without closing the firefox after each test
Thu May 07, 2015 2:32 pm
hi,
i have 2 tests in my script. i want to continue the second test, without closing my browser. how can i do that. Pls help
i have 2 tests in my script. i want to continue the second test, without closing my browser. how can i do that. Pls help
- Code:
@Before
public void setUp() throws Exception {
driver = new FirefoxDriver();
baseurl=url;
driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
driver.get(baseUrl + "myportal/control/main");
driver.findElement(By.xpath("//input[@name='USERNAME']")).clear();
driver.findElement(By.xpath("//input[@name='USERNAME']")).sendKeys("admin");
driver.findElement(By.xpath("//input[@name='PASSWORD']")).clear();
driver.findElement(By.xpath("//input[@name='PASSWORD']")).sendKeys("admin");
driver.findElement(By.xpath("//input[@type='image']")).click();
}
@Test
public void testCreateTeam() throws Exception {
driver.get(baseUrl + "myportal/control/main");
driver.findElement(By.xpath("//li[5]/a/b")).click();
...
}
@Test
public void testUpdateTeam() throws Exception {
driver.findElement(By.xpath("//li[6]/a/b")).click();
...
}
@After
public void tearDown() throws Exception {
driver.quit();
String verificationErrorString = verificationErrors.toString();
if (!"".equals(verificationErrorString)) {
fail(verificationErrorString);
}
}
- Sample TestNg Test Case with Maven Building your Selenium Tests using Maven
- automatically run Selenium tests c# in Microsoft test manager
- How to propagate variable between tests inside a test suite in Selenium RC
- Running Selenium Test cases as JUnit tests using Command Line
- Firefox constantly gives Insecure Connection Warning, fails tests
Permissions in this forum:
You cannot reply to topics in this forum