- cfetty
- Posts : 1
Join date : 2012-09-06
Location : Iowa
selectWindow Could not find window with title
Thu Sep 06, 2012 8:23 pm
The following snippet of script runs manually (step by step, using "X") but fails when trying to run at once or when using the pause > step. The failure occurs at selectWindow.
clickAndWait css=input[type="submit"]
pause 5100
selectWindow title=XYZ Billing Report
windowFocus
verifyTextPresent Account Number
The script for the window is:
// function redirect(target, url){
if (target =='_blank'){
open(url);
}
else if (target == '_top'){
window.top.location.href=url;
}
else if (target == '_parent'){
location.href=url;
}
else if (target == '_self'){
location.href =url;
}
else{
open(url);
}
}
//]]>
So I don't see where I can use a name or var. Very odd behavior that this will work one way, but not another.
clickAndWait css=input[type="submit"]
pause 5100
selectWindow title=XYZ Billing Report
windowFocus
verifyTextPresent Account Number
The script for the window is:
// function redirect(target, url){
if (target =='_blank'){
open(url);
}
else if (target == '_top'){
window.top.location.href=url;
}
else if (target == '_parent'){
location.href=url;
}
else if (target == '_self'){
location.href =url;
}
else{
open(url);
}
}
//]]>
So I don't see where I can use a name or var. Very odd behavior that this will work one way, but not another.
- How to get focus to a new popup window which doesnt have name,id or unique title.
- Help to find the window with dynamic id & compound class
- Unable to find element on closed window on IE 11
- How to get the tittle of a object (not window), bcz title holds the full text but inner text holds only 25 char of text (in RC and Webdriver)
- How to shift the focus from one window to another window and proceed the action in Second window?
Permissions in this forum:
You cannot reply to topics in this forum