mmahima Posted December 9, 2009 Posted December 9, 2009 (edited) The following script opens a popup window #include<IE.au3> $oIE = _IECreate("...searchrequests.do") _IELoadWait($oIE,1000) $tags = $oIE.document.all.tags("input") for $tag in $tags iF(StringInStr($tag.type,"submit")>0)Then $tag.click msgbox(0,"","Inside the for loop") ExitLoop EndIf Next I am not able to click on the popup window, which is popped nor message box is getting opened i.e., when i click on $tag.click an alert dialog box is opened. Edited December 11, 2009 by mmahima
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now