[wtr-general] Re: Watir as a service - any workaround?

2010-01-13 Thread Darcoli
Note that the iexplore process is created, I can see iexplore processes getting created from the task manager - but I think the link is not made with it... here is part of my code just in case you need... require 'rubygems' def valid_User?(user) ie=Watir::IE.new_process() ie.visible =

Re: [wtr-general] Re: Watir as a service - any workaround?

2010-01-13 Thread Eric Mathiesen
have you tried using; $browser = Watir::IE.attach(:url, http://www.google.com;) $browser = Watir::IE.attach(:title, Google) of course thats the *nix command, windows would be irb: ie = Watir::IE.attach(:url, http://www.google.com;) irb: ie = Watir::IE.attach(:title, Google) Let me know, Eric