[wtr-general] Re: How to handle file download popups in Firefox?

2008-12-18 Thread Wilson Xu
The first step: Use Send({TAB}) event to focus on the radio what you want. The second step: Use Send({DOWN}) or Send({UP}) event to select radio, I think this way is not stable, but can resolve your issue. Wilson Xu On Dec 18, 2:09 am, Margam nk.mar...@gmail.com wrote: Hi al3kc, THANK YOU

[wtr-general] Re: How to handle file download popups in Firefox?

2008-12-18 Thread al3kc
I cannot set radio button. It's an issue for me too. I just have selected Save file by default in FF. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Watir General group. To post to this group, send email to

[wtr-general] Re: How to handle file download popups in Firefox?

2008-12-18 Thread al3kc
on http://www.autoitscript.com/forum/index.php?showtopic=81915hl=firefox+download+window I have found next code: ControlClick(Opening, , MozillaWindowClass1, left, 1, 46, 158) sleep(1000) ControlClick(Opening, , MozillaWindowClass1, left, 1, 241, 237) sleep(1000) All elements in

[wtr-general] Re: How to handle file download popups in Firefox?

2008-12-18 Thread Margam
Hey guys, Thanks for the input. I will certainly try, as soon as I finish with my current project. Thanks. Margam On Dec 18, 3:56 am, al3kc aleks.kiev...@gmail.com wrote: onhttp://www.autoitscript.com/forum/index.php?showtopic=81915hl=firefo... I have found next code: ControlClick(Opening,

[wtr-general] Re: How to handle file download popups in Firefox?

2008-12-18 Thread Wilson Xu
Another way, I think you can use MouseClick() API in AutoITx to select the radio box. Wilson Xu On Dec 19, 1:35 am, Margam nk.mar...@gmail.com wrote: Hey guys, Thanks for the input. I will certainly try, as soon as I finish with my current project. Thanks. Margam On Dec 18, 3:56 am,

[wtr-general] Re: How to handle file download popups in Firefox?

2008-12-17 Thread Margam
Hi al3kc, THANK YOU very much. Your code snippet worked great the very first time. I just had to modify it a little for my use, but worked just fine. I was having another question regarding the file download popup and was wondering if you could help with some advice. How to handle the radio

[wtr-general] Re: How to handle file download popups in Firefox?

2008-12-17 Thread al3kc
Hi, I use next code and it works for me @ai = WIN32OLE.new(AutoItX3.Control) @ai.WinWaitActive([REGEXPTITLE:Opening]) @ai.Send({ENTER}) @ai.WinWait(Enter name of file to save to…, , 5) @ai.WinActivate(Enter name of file to save to…) sleep(7)

[wtr-general] Re: How to handle file download popups in Firefox?

2008-12-16 Thread Margam
Hello Everyone, Can someone help me with this issue please. I need this working very desperately for my project. Thank you very much. Margam On Dec 15, 2:40 pm, Margam nk.mar...@gmail.com wrote: Hello Everyone, I have been trying to handle File Download pops in FF browser. I had posted a