[wtr-general] Re: The interface is unknown

2010-06-24 Thread George
It looks like you close your browser at the end of the loop, then you attempt to go to a URL. Perhaps replacing line 2 with this will do the trick: ie.start(http://yourwebsitehere;) HTH, George On Jun 24, 2:46 pm, Adam xyza...@gmail.com wrote: My code grabs data from a spreadsheet, then

[wtr-general] Re: The interface is unknown

2010-06-24 Thread Adam
I tried ie.start(yourwebsite...) It didnt' work, but it got me thinking that I needed to instantiate the object within the loop maybe... so I tried this and it worked: http://pastie.org/1017983 On Jun 24, 3:10 pm, George george.sand...@gmail.com wrote: It looks like you close your browser at

[wtr-general] Re: The interface is unknown

2010-06-24 Thread George
Cool, glad it worked. ie.start should have opened a new browser (like Watir::IE.new) and go to the URL specified. Not sure why that didn't work for you. On Jun 24, 3:18 pm, Adam xyza...@gmail.com wrote: I tried ie.start(yourwebsite...) It didnt' work, but it got me thinking that I needed