开发者

Unable to locate WindowID

开发者 https://www.devze.com 2023-03-16 06:35 出处:网络
I am currently testing a web app using selenium rc with eclipse. I\'ve been having issues with a single pop up window which appears when a submit button is clicked. The confirmation window appears wit

I am currently testing a web app using selenium rc with eclipse. I've been having issues with a single pop up window which appears when a submit button is clicked. The confirmation window appears with a single 'ok' option.

I've also tried 'chooseOKonnextConfirmation' in conjunction with .getConfirmation but eclipse tells me no confirmation exists. I've tried inspecting the window itself with firebug but have been unable to get any re开发者_运维技巧sults.

I also tried with "selenium.selectWindow(getAllWindowIDs ()[1]);" but selenium not recognizing "getAllWindowIDs".

Could somebody please tell me how I can retrieve the windowID and the associated API commands I need to implement to get rid of this problem?


from your description, i understand that you have an ALERT window being appeared after clicking SUBMIT button but not the CONFIRMATION window.

if my understanding is correct

( you said single OK button - ALERT window appears with single OK button - CONFIRMATION window appears with OK and CANCEL buttons - there is another window javascript can generate which is CONFIRMATION.it appears with TEXT field and OK and CANCEL buttons )

so you must use accordingly.

here is what you should use

if(selenium.isAlertPresent()) { String message = selenium.getAlert(); }

this will consume you Alert window and you can check the message displayed on Alert window if you want.

if this is not please post write your comment


It's selenium.getAllWindowIds(); note the capitalisation. Don't forget to make sure the popup has already appeared (e.g. selenium.waitForPopUp()).


Yes sudarsan is correct if you have an alert.

If you have an popup window not an alert with OK button then you have to click OK when popup appears.

If you are unable to locate the button use firebug to locate the element.

0

精彩评论

暂无评论...
验证码 换一张
取 消