[wtr-general] How to Click on the Browser File Menu Using Watir

2010-03-23 Thread Praveen
HI Folks I have very serious Problem, Plz let me know in Firewatir/Watir, how to click the Browser menu (Since i wanna Save a PDF file to my Desktop in C:/ Plz let me know the script. After the PDF file opens, i need to save it.. File Save Page As Pl let me know the script.. -- Before

[wtr-general] Pop up Windows

2010-03-23 Thread Praveen
HI When a Pop window saying Save or no How to select that window n save in Watir. Plz let me know its urgent -- Before posting, please read http://watir.com/support. In short: search before you ask, be nice. You received this message because you are subscribed to

Re: [wtr-general] Pop up Windows

2010-03-23 Thread Željko Filipin
On Tue, Mar 23, 2010 at 3:53 PM, Praveen praveen99...@yahoo.com wrote: When a Pop window saying Save or no How to select that window n save in Watir. Did you read this? http://wiki.openqa.org/display/WTR/Pop+Ups Željko -- watir.com - community manager pledgie.com/campaigns/2982 - donate

Re: [wtr-general] How to Click on the Browser File Menu Using Watir

2010-03-23 Thread Željko Filipin
On Tue, Mar 23, 2010 at 3:52 PM, Praveen praveen99...@yahoo.com wrote: After the PDF file opens, i need to save it.. I think browsers have a setting to automatically download a pdf file after a link to it is clicked. Browse the archives, I am sure there is an answer here already. Željko --

[wtr-general] Re: How to Click on the Browser File Menu Using Watir

2010-03-23 Thread Praveen
Hi Pl can u write the script for this I didnt understand , how to browse the archivies -- Before posting, please read http://watir.com/support. In short: search before you ask, be nice. You received this message because you are subscribed to

[wtr-general] Re: Cannot click popup window in IE using watir 1.6.5

2010-03-23 Thread al3kc
I have found work around for my problem. I use the following methods def check_for_popups loop do popup = autoit.WinWait('Confirm, '', 0.1) if popup == 1 autoit.Send('{ENTER}') end end end and create new process with this method: @pid = Process.create( :app_name

[wtr-general] Re: Cannot click popup window in IE using watir 1.6.5

2010-03-23 Thread Darryl Brown
Hi, Are you running a test that encounters unexpected popups? If they are expected, why not use click_no_wait and handle them individually. Regards, Darryl On Mar 23, 11:38 am, al3kc aleks.kiev...@gmail.com wrote: I have found work around for my problem. I use the following methods def

[wtr-general] Re: Another possible solution for popup window handling

2010-03-23 Thread George
Hi, sorry for the late response. I'm not sure why it's doing that. The process should end at the end of your script. If the script crashes while you're running it, there may have been a process still running in the background. Sorry I can't be of better assistance. -George On Mar 16, 5:27 pm,

Re: [wtr-general] Re: How to Click on the Browser File Menu Using Watir

2010-03-23 Thread Wesley Chen
Your problem is dealing with the file download popup. Please search in Watir official website or in the group. Wesley. For life, the easier, the better. On Tue, Mar 23, 2010 at 11:15 PM, Željko Filipin zeljko.fili...@wa-research.ch wrote: On Tue, Mar 23, 2010 at 4:10 PM, Praveen