Re: [Wtr-general] assert_match question

2006-01-05 Thread Roy Sin
I uninstalled the latest tarball and installed Watir again from the one-click installer and ran my scripts. I didn't get the undefined method 'html' error and my scripts completed sucessfully. --- Zeljko Filipin <[EMAIL PROTECTED]> wrote: > I think that your error message > "undefined method `h

Re: [Wtr-general] assert_match question

2006-01-05 Thread Roy Sin
I uninstalled the latest tarball and installed Watir again from the one-click installer and ran my scripts. I didn't get the undefined method 'html' error and my scripts completed sucessfully. --- Zeljko Filipin <[EMAIL PROTECTED]> wrote: > I think that your error message > "undefined method `h

Re: [Wtr-general] assert_match question

2006-01-05 Thread Zeljko Filipin
I think that your error message "undefined method `html' for Frame" means that "html" method is not defined for Frame class. Zeljko 2006/1/4, Roy Sin <[EMAIL PROTECTED]>:> Hi Wtr,> I have a begin end as shown below where I do an> assert_match to see if the html match a string variable> that I sto

[Wtr-general] assert_match question

2006-01-04 Thread Roy Sin
Hi Wtr, I have a begin end as shown below where I do an assert_match to see if the html match a string variable that I stored as greenStopTime = '12:26PM to 12:29PM' begin assert_match(greenStopTime, $ie.frame("cpmain").html.to_s) puts("4 min Stop duration TEST PASSED\n") r