Solved
Forum Discussion
6 Replies
- karkadilValued ContributorLong, long time ago (namely in 2007) I had such a problem with Download window.
I still don't know the reason, but you can find description of the problem and a workaround here
http://autotestgroup.com/en/blog/23.html - RavikSuper ContributorWell Dear All I Resolved the issue by using FindChild Method and I used below code-
set popup = sys.Process("iexplore", 2).FindChild("wndCaption","OK",500)
If popup.Exists then
popup.click
Else Log.message ("Pop up not Found") - RavikSuper ContributorThanks for your responce, that great example, and it's very usefull for us but still I am facing same issue.
- karkadilValued ContributorWell, you shouldn't have accept my reply then since the issue isn't fixed. Now for everybody else this question looks like solved.
Unfortunately, there is nothing else how I can help you here. The only way I know is to try different solutions (even stupid ones). - AlexKaras
Champion Level 2
Hi Ravi,
Is it necessary for your test to have two IE's to be opened?
If this is not required, then try to leave one IE instance and try again. The case is that I am having pretty similair problem that the IE's File Open window of the same WndClass is not recognized if more than one IE instance exists, but everything works fine if I have only one IE instance running during the test (though I am working with IE 7). - RavikSuper ContributorHi Gena , I Accept your responce, becouse it's seem useful for us, we also have the functionality to Export and download file from the web page. Yes I don't know how to work with Open,Save, Cancel Tab. Your Example indicate that how we can handle these.