- freeskyAmateur
- Posts : 72
Join date : 2011-04-13
how to switch to popup window without window id
Tue Feb 28, 2012 5:11 pm
driver.switchTo().window(windowName), here the 'windowName' represents the window id, right? if so, then how to switch to popup window without window id? Thanks in advance!
- faramkaProfessional
- Posts : 143
Join date : 2011-09-15
Location : Poland
Re: how to switch to popup window without window id
Thu Mar 01, 2012 10:00 pm
Maybe this part of documentation could help you to solve this issue.
- srinithya
- Posts : 3
Join date : 2012-03-02
Re: how to switch to popup window without window id
Fri Mar 02, 2012 12:10 pm
for
(String handle : driver.getWindowHandles())
{
driver.switchTo().window(handle);
String
title = driver.getTitle();
if
(title.equals("Popup Page"))
break;
}
(String handle : driver.getWindowHandles())
{
driver.switchTo().window(handle);
String
title = driver.getTitle();
if
(title.equals("Popup Page"))
break;
}
- Error : I could not able to switch parent window to overlay window because that it throws No element exception found. We are using the webdriver :- 2.45.1 Please some one can help to resolve this issue, thanks in advance.
- How to switch window in webdriver?
- how to switch to a new window
- How to switch new window using url
- how to switch to new window
Permissions in this forum:
You cannot reply to topics in this forum