Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to capture the alert using selenium RC C# function getAlert() as a result of checking the availability of an account ID when the button is clicked. The form will be submitted to the server from one frame let's say "frame_A" and the server will response by javascript code "alert("The account is available")" into another frame called "frame_B" but somehow the selenium getAlert() cannot detect the existence of the alert.

Have been looking for solutions, but so far have not found it.

Any help, will be greatly appreciated.

Thanks

share|improve this question

1 Answer

Have you tried selecting the iframe before trying to getAlert() using selectFrame(frameId) method? I am not sure if this will solve your problem but worth giving a try. Thanks

share|improve this answer
I have tried what you mentioned too, it does not work. Now I used selenium webdriver, it can accept the alert better than the selenium RC, but it still cannot detect sometimes :( – William Mar 24 '11 at 3:12
Hope that approach solved your problem :) – Vaman Kulkarni May 11 '11 at 9:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.