Re: [Wtr-general] Looping with excel worksheets

2007-04-13 Thread Charley Baker
Hi Nicola, Put it in a method and call the method from within a loop: require 'watir' include Watir url = "http://www.zoomerang.com/recipient/survey.zgi?p=WEB225WDYJNVDT"; search_string = "questionnaire" $ie = IE.new $ie.goto(url) $ie.bring_to_front #ie.show_all_objects require 'win32ole' d

[Wtr-general] Looping with excel worksheets

2007-04-13 Thread Nicola Kennedy
Hi, Have written following script (which works! I'm getting there!) I now want to put a loop in so that when this is complete, it goes to the second worksheet in my excel file, basically starting the process from the beginning again and then inputs this information in the same fields. Can anyon