如何得到一个已经存在的IE进程

如何得到一个已经存在的IE进程

我想在一个已经打开的IE上进行操作,我怎么得到IE呢?
如一般情况下是初始化IE
require 'php?name=watir" onclick="tagshow(event)" class="t_tag">watir'
ie= Watir::IE.new
test_site = "http://www.google.com"
ie.goto test_site
ie.text_field(:name,"q").set "hello"

但是,现在想在已经打开的页面中中执行
ie.text_field(:name,"q").set "hello"

这个不知道怎么处理?
看看Watir.IE这个类的定义,有没有find之类的方法吧.
用attach就可以了
require 'watir'
ie= Watir::IE.attach(:url,"http://www.google.com/")
ie.text_field(:name,"q").set "hello"
好,最好在attach之后,再加上下 ie.bring_to_front()