- deepender
- Posts : 3
Join date : 2014-09-03
Multiple tabs opening using single browser
Fri Sep 05, 2014 9:06 pm
Hi
How can we open multiple tabs and put the url in all the tabs invoked in webdriver selenium. Please Help
How can we open multiple tabs and put the url in all the tabs invoked in webdriver selenium. Please Help
- Paps_engineerActive particpant
- Posts : 10
Join date : 2014-07-24
Re: Multiple tabs opening using single browser
Fri Oct 10, 2014 5:19 pm
First step give the corresponding url
use this command
String parentWindow = driver.getWindowHandle();
Set handles = driver.getWindowHandles();
for(String windowHandle : handles)
{
if(!windowHandle.equals(parentWindow))
{
driver.switchTo().window(windowHandle);
driver.close(); //closing child window
driver.switchTo().window(parentWindow); //cntrl to parent window
}
}
Thanks,
Papaiadasan.S,
Automation COE,
Indium Software India Limited.
(indiumsoft.com/core-qa-offerings/test-automation)
Test Automation
use this command
String parentWindow = driver.getWindowHandle();
Set
for(String windowHandle : handles)
{
if(!windowHandle.equals(parentWindow))
{
driver.switchTo().window(windowHandle);
driver.close(); //closing child window
driver.switchTo().window(parentWindow); //cntrl to parent window
}
}
Thanks,
Papaiadasan.S,
Automation COE,
Indium Software India Limited.
(indiumsoft.com/core-qa-offerings/test-automation)
Test Automation
- nabhanya.varmaActive particpant
- Posts : 13
Join date : 2014-03-02
Re: Multiple tabs opening using single browser
Tue Dec 16, 2014 12:15 am
Using selenium webdriver, we can do it simply by switching to the new window.
Syntax: driver.switchTo().window(newWindowHandle);
But you should be effectively selecting the window that you want to work or Else it will throw element not found exception.
You can look into the below URL which has mentioned examples with simple tests with verifications and resuable methods.
Working with windows
http://seleniumeasy.com/tags/windows
Syntax: driver.switchTo().window(newWindowHandle);
But you should be effectively selecting the window that you want to work or Else it will throw element not found exception.
You can look into the below URL which has mentioned examples with simple tests with verifications and resuable methods.
Working with windows
http://seleniumeasy.com/tags/windows
Permissions in this forum:
You cannot reply to topics in this forum