- Watir 教程
- Watir - 主页
- Watir - 概览
- Watir - 简介
- Watir - 环境设置
- Watir - 安装浏览器驱动程序
- Watir - 使用浏览器
- Watir - 网页元素
- Watir - 定位网页元素
- Watir - 使用 Iframe
- Watir - 自动等待
- Watir - 无头测试
- Watir - 移动测试
- Watir - 捕获屏幕截图
- Watir - 页面对象
- Watir - 页面性能
- Watir - Cookie
- Watir - 代理
- Watir - 警告
- Watir - 下载
- Watir - 浏览器窗口
- Watir 实用资源
- Watir - 快速指南
- Watir - 实用资源
- Watir - 讨论
Watir - 警告
本章中我们将了解如何使用 Watir 处理警告。
语法
browser.alert.exists? browser.alert.ok browser.alert.close
测试页
<html> <head> <title>Testing Alerts Using Watir</title> </head> <body> <script type = "text/javascript"> function wsformsubmitted() { alert("Button is Clicked !"); } </script> <button id = "btnsubmit" onclick = "wsformsubmitted();">Submit</button> </body> </html>
Watir 代码
require 'watir' b = Watir::Browser.new :chrome b.goto('https://127.0.0.1/uitesting/testalert.html') b.button(id: 'btnsubmit').click b.alert.ok b.screenshot.save 'alerttest.png'
输出 alerttest.png 如下所示 −
广告