Watir - Cảnh báo
Trong chương này, chúng ta sẽ hiểu cách xử lý các cảnh báo bằng Watir.
Cú pháp
browser.alert.exists?
browser.alert.ok
browser.alert.close
Trang thử nghiệm
<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>
Mã 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'
Kết quả đầu ra alerttest.png được hiển thị ở đây -