Re: [Wtr-general] verifying contents of text_field

2007-05-17 Thread alan
Thanks, that did the trick once I got around the newb mistake of not having require 'test/unit/assertions' include Test::Unit::Assertions Now I just have to figure out how to put the results in an excel spreadsheet the same way I do with the results from an If/Else. Thanks Again! __

Re: [Wtr-general] verifying contents of text_field

2007-05-16 Thread Bret Pettichord
alan wrote: > I'm doing a test where I fill in a field with : > ie.text_field(:name,"track_note_0").set(testtext) > it then saves this entry with a: > ie.button(:value, "save").click > and then logs out. > > > I need to have the script go back to the page and make sure that field still > has that

[Wtr-general] verifying contents of text_field

2007-05-16 Thread alan
I'm doing a test where I fill in a field with : ie.text_field(:name,"track_note_0").set(testtext) it then saves this entry with a: ie.button(:value, "save").click and then logs out. I need to have the script go back to the page and make sure that field still has that text in it, how would I do