zoukankan      html  css  js  c++  java
  • Watir: 如何处理简单的网页弹出警告框?

    以下是一个很经典的把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
  • 相关阅读:
    codevs1288 埃及分数
    codevs1792 分解质因数
    dp
    JAVA大数贪心
    求最长不重叠子串
    初识后缀数组
    dp
    两数相除,判断小数位是否有限位
    构造二分图匹配
    建立多个树状数组
  • 原文地址:https://www.cnblogs.com/autotest/p/3262480.html
Copyright © 2011-2022 走看看