Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
$ie.link(:text,"Revoke").click_no_wait
$autoit.WinWaitActive("[Class:#32770]")
result =$autoit.ControlClick("[Class:#32770]","","Button1")

I am using above code to click on OK on confimration popup But its not working for New ruby version 1.93

Is there any other way to click on OK for confirmation popup?

share|improve this question
When i am running the script on click_no_wait it pauses the script & script wait for popup to open but popup not opening , If user directly click on button it runs the autoit script so i think its click_no_wait problem, its unable to initialize call – Paddy M Mar 8 '12 at 9:38
There are many suggestions for popup handling. wiki.openqa.org/display/WTR/Pop+Ups – Dave McNulla Mar 8 '12 at 17:31
Are you saying it does not work with windows 7, ruby 1.9.3, or for combination of both? Or are you saying it just does not work and you have no idea why? – Ċ½eljko Filipin Mar 8 '12 at 20:34
@ Dave McNulla - I checked ' wiki.openqa.org/display/WTR/Pop+Ups ' this link before i go for autoit its not working with my case. Currently on XP & Ruby 1.92 above code works. – Paddy M Mar 9 '12 at 12:02
@Filipin- I am asking for Windows 7 with ruby 1.93 & autoit current version I tried diffent commands for Handling JS popup but in my case its not working as my Project work on IE only so Need solution for IE. And i am sure its not working in my case – Paddy M Mar 9 '12 at 12:03
show 1 more comment

1 Answer

I got the answer for Windows7 we have to register AutoItX3_x64.dll To the system

Below is the command to register the dll in the system You will find AutoItX3_x64.dll in C:\program file\autoit copy paste that dll in c:\windows\sysWOW64\

& run below command in command prompt

c:\windows\sysWOW64\regsvr32.exe c:\windows\sysWOW64\AutoItX3_x64.dll

share|improve this answer
You should accept your answe. For that matter I'd accept answers (presuming they solved your issue) for your other 7 questions so you don't have a 0% accept rate. (that can turn off some folks who will 'not bother answering if has no chanced of being accepted' – Chuck van der Linden Mar 13 '12 at 21:22

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.