📜  Watir-警报

📅  最后修改于: 2020-12-03 05:24:30             🧑  作者: Mango


在本章中,我们将了解如何使用Watir处理警报。

句法

browser.alert.exists?
browser.alert.ok
browser.alert.close

测试页

Testing Alerts Using Watir
   
   
   
      
      
   

瓦特码

require 'watir'
b = Watir::Browser.new :chrome
b.goto('http://localhost/uitesting/testalert.html')
b.button(id: 'btnsubmit').click
b.alert.ok
b.screenshot.save 'alerttest.png'

输出Alerttest.png显示在这里-

警报测试