[Wtr-general] Atwola

2006-09-27 Thread Harmony
Hi, Can anyone tell me if they find atwola more than a pesky cookie or is it turning into virus causing comlications else where. It seems to appear when I go to IQC which I think is associated with AOL. Would appreciate your opinions please. Cheers, Harmony.

[Wtr-general] Change Frame

2006-09-27 Thread Michael Ehrich
Hi, i got a page with two frames and i want watir to change the url of one of those frames. I thought ie.frame(frame_name).goto(url) would do so but it doesnt. Anyone an idea or a solution for my problem ? sorry about the qoutes but my mailprogramm is not able to put both qoutes at

Re: [Wtr-general] file_field.set not working

2006-09-27 Thread Zeljko Filipin
On 9/26/06, Charley Baker [EMAIL PROTECTED] wrote: Zeljko, Go ahead and open up a Jira ticket for this. It looks likefilefield_test.rb in the unittests is also failing for me.Thanks,CharleyDone. http://jira.openqa.org/browse/WTR-108Zeljko ___ Wtr-general

Re: [Wtr-general] Fwd: Managing the Watir Project -- Wikipedia entry

2006-09-27 Thread Sun
A comment -- when substituting this: === #Ensure popup won't block Watir ie.button(:name, btnG).click_no_wait ie.dialog.button('OK').click === for this: === #Ensure popup won't block Watir ie.button(:name, btnG).click_no_wait #Handle the popup hwnd = ie.enabled_popup(5) if (hwnd) #yes there is a

Re: [Wtr-general] Fwd: Managing the Watir Project -- Wikipedia entry

2006-09-27 Thread Bret Pettichord
Sun wrote: So while the code I posted in wikipedia may not be the prettiest -- it DOES work -- and works reliably. Exactly. Sorry i wasn't clear. The embarrassing thing to me is that you have to write non-pretty to code to make Watir work sometimes. (You could make the code i wrote work

[Wtr-general] Excuting Javascript Function from Watir or Ruby?

2006-09-27 Thread Park, Chong SuhX
Hi, I need to execute _javascript_ Function =__doPostBack('iRegister','' below on mouse click but have not found any luck so far. Could anyone provide me some idea? Id *greatly* appreciate it!! Thanks John tr td class=buttonLft/tdtd class=buttonBed align=center div

Re: [Wtr-general] Fwd: Managing the Watir Project -- Wikipedia entry

2006-09-27 Thread Bret Pettichord
Sun, Thanks again for the Wikipedia article. It is helpful in many ways to have this information written up. I am happy that you wrote it (or expanded it). Bret ___ Wtr-general mailing list Wtr-general@rubyforge.org

Re: [Wtr-general] Formatting Excel Column Width

2006-09-27 Thread Sun
Thank you. So I did access the link, download the extended MS help, and accessed VBAXL10.CHM. I found a method called AutoFit. === #Format workbook columns worksheet.range(b1:b4).Interior['ColorIndex'] = 36 #pale yellow worksheet.range(b:b).AutoFit === However, because I was originally working

[Wtr-general] Image Capture Package?

2006-09-27 Thread Steve Tangsombatvisit
Hi everyone,I was just wondering if anyone can recommend a good image capture library/package that can be used with Ruby/Watir? We need to do pretty basic image capture like capture a specific window, or a specific frame within a window and then save the image as a bmp or jpg file.Thanks in

Re: [Wtr-general] Image Capture Package?

2006-09-27 Thread Prem
You could try out cropper. pretty neat. comes with source code. used by the mantis project as well.On 9/28/06, Steve Tangsombatvisit [EMAIL PROTECTED] wrote: Hi everyone,I was just wondering if anyone can recommend a good image capture library/package that can be used with Ruby/Watir? We

Re: [Wtr-general] Image Capture Package?

2006-09-27 Thread Paul Rogers
a long time back I found some ruby that did this, but it didnt work quite correctly. Marco Brasse recently sent an update. Its below. I think it only does bitmap. require 'dl/import'module ScreenCapture extend DL::Importable dlload "kernel32.dll","user32.dll","gdi32.dll" HORZRES = 8

Re: [Wtr-general] Managing the Watir Project -- Wikipedia entry

2006-09-27 Thread Paul Rogers
also, for the download example, it is also possible to do this ie.goto('http://google.com') puts ie.downloadtime# check the method name, it might be downLoadTime or down_load_time ie.text_field(:index,1).set('pickaxe') ie.button(:index,1).click puts ie.downloadtime# check the method