Watir - วัตถุหน้า
Page Object ใน Watir ช่วยให้เรานำโค้ดกลับมาใช้ใหม่ในรูปแบบของคลาสได้ การใช้คุณสมบัติ page object ทำให้แอปของเราทำงานอัตโนมัติโดยไม่ต้องทำซ้ำรหัสใด ๆ และยังทำให้สามารถจัดการโค้ดได้อีกด้วย
เมื่อทำการทดสอบเราสามารถสร้างวัตถุหน้าสำหรับแต่ละหน้าที่เรากำลังจะทดสอบได้ จากนั้นเราจะเข้าถึงวิธีการและคุณสมบัติโดยใช้วัตถุหน้า
เหตุผลเบื้องหลังการใช้วัตถุหน้า -
ในกรณีที่มีการเปลี่ยนแปลงใด ๆ กับหน้าที่มีการเปลี่ยนแปลงแก้ไขไม่จำเป็นต้องเขียนโค้ดซ้ำ
เพื่อหลีกเลี่ยงความซ้ำซ้อนของรหัส
เราจะใช้ RSpec เพื่อใช้ประโยชน์จาก page-object ใน Watir ในกรณีที่คุณไม่คุ้นเคยกับ RSpec นี่คือบทช่วยสอนฉบับเต็มสำหรับRSpecเพื่อให้คุณเรียนรู้
หน้าที่เราจะทำการทดสอบมีให้ที่นี่ -
textbox.html
<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>
เอาต์พุต
ตอนนี้เราจะสร้างวัตถุหน้าสำหรับหน้าด้านบนดังที่แสดงด้านล่าง -
pageobjecttest.rb
class InitializeBrowser
def initialize(browser)
@browser = browser
end
end
class TestPage lt; InitializeBrowser
def textbox
@textbox = TestTextbox.new(@browser)
end
def close
@browser.screenshot.save 'usingpageobject.png'
@browser.close
end
end # TestPage
class TestTextbox < InitializeBrowser
URL = "http://localhost/uitesting/textbox.html"
def open
@browser.goto URL
self
end
def enterdata_as(name)
name_field.set name
name_field.fire_event('onchange')
end
private
def name_field
@browser.text_field(:id > "firstname")
end
end # TestTextbox
มีการกำหนดคลาสสามคลาส - InitializeBrowser, TestPage และ TestTextbox -
InitializeBrowser - สิ่งนี้จะเริ่มต้นเบราว์เซอร์ที่เปิดขึ้นและแชร์ออบเจ็กต์ของเบราว์เซอร์กับคลาส TestPage และ TestTextbox
TestPage - คลาสนี้จะมีการอ้างอิงวัตถุไปยัง TestTextbox และมีวิธีการจับภาพหน้าจอและปิดเบราว์เซอร์
TestTextbox - คลาสนี้จะมีเมธอดในการเปิด url เพจอ้างอิงถึงฟิลด์ข้อความตั้งค่าข้อมูลและเริ่มการทำงานของเหตุการณ์ onchange
เมื่อคุณรันโค้ดที่แสดงด้านบนคุณจะเห็นผลลัพธ์ดังที่แสดงด้านล่าง -