Watir - การจับภาพหน้าจอ
ความสามารถในการจับภาพหน้าจอเป็นหนึ่งในคุณสมบัติที่น่าสนใจที่มีให้กับ Watir ในระหว่างการทดสอบอัตโนมัติคุณสามารถจับภาพหน้าจอและบันทึกหน้าจอได้ ในกรณีที่เกิดข้อผิดพลาดเดียวกันสามารถบันทึกด้วยความช่วยเหลือของภาพหน้าจอ
ตัวอย่างง่ายๆพร้อมกับหน้าทดสอบที่เราถ่ายภาพหน้าจอจะกล่าวถึงด้านล่าง -
ไวยากรณ์
browser.screenshot.save 'nameofimage.png'
หน้าทดสอบ
<html>
<head>
<title>Testing UI using Watir</title>
</head>
<body>
<script type = "text/javascript">
function wsentered() {
console.log("inside wsentered");
var firstname = document.getElementById("firstname");
if (firstname.value != "") {
document.getElementById("displayfirstname").innerHTML =
"The name entered is : " + firstname.value;
document.getElementById("displayfirstname").style.display = "";
}
}
</script>
<div id = "divfirstname">
Enter First Name :
<input type = "text" id = "firstname" name = "firstname" onchange = "wsentered()" />
</div>
<br/>
<br/>
<div style = "display:none;" id = "displayfirstname"></div>
</body>
</html>
ตัวอย่าง
require 'watir'
b = Watir::Browser.new :chrome
b.goto('http://localhost/uitesting/textbox.html')
t = b.text_field(id: 'firstname') // using the id of the textbox to locate the textbox
t.exists?
t.set 'Riya Kapoor'
b.screenshot.save 'textboxbefore.png'
t.value
t.fire_event('onchange')
b.screenshot.save 'textboxafter.png'
ภาพหน้าจอที่เราถ่ายโดยใช้ Watir แสดงไว้ที่นี่ -