以下是一个很经典的把Watir与AutoIt连接在一起的实例。如果我们对AutoIT了解的更多,处理类似的问题会更加简单。
以下实例会判断页面上是否有某“删除”链接,一旦有该链接,就点击,然后点击弹出的警告框上的“确定”按钮,直到页面上不再有“删除”链接为止。
require 'watir' require 'win32ole' class WindowHelper def initialize( ) @autoit = WIN32OLE.new('AutoItX3.Control') end def push_alert_button() @autoit.WinActivate("来自网页的消息", "") @autoit.ControlClick("来自网页的消息", "", "Button1")
@autoit.WinWaitClose("来自网页的消息") end end ie = Watir::IE.find(:url, /192/) #重复删除页面上资源 wh = WindowHelper.new() until !ie.link(:id, "MainContent_gridview_LinkButton1_0").exists? do ie.link(:id, "MainContent_gridview_LinkButton1_0").click_no_wait wh.push_alert_button end