Watir - การค้นหาองค์ประกอบของเว็บ
ใน Watir สำหรับการทดสอบคุณต้องค้นหาองค์ประกอบและสามารถทำได้หลายวิธีโดยใช้ id คลาสหรือข้อความขององค์ประกอบ
ในบทนี้เราจะเห็นตัวอย่างบางส่วนซึ่งแสดงวิธีต่างๆในการค้นหาองค์ประกอบต่างๆ
การใช้ ID ขององค์ประกอบ
หน้าทดสอบ
<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'
ในตัวอย่างนี้เราใช้ id ขององค์ประกอบกล่องข้อความเพื่อค้นหาและตั้งค่า
t = b.text_field(id: 'firstname')
เอาต์พุต
ในกรณีที่คุณต้องการค้นหา div, span หรือแท็ก html อื่น ๆ คุณสามารถทำได้โดยใช้ id ดังนี้ -
สำหรับ div
browser.div(id: "divid")
browser.div(id: /divid/)
สำหรับช่วง
browser.span(id: "spanid")
browser.span(id: /spanid/)
ใช้ NAME ขององค์ประกอบ
หน้าทดสอบ
<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(name: 'firstname') // name is used to locate the textbox element
t.exists?
t.set 'Riya Kapoor'
b.screenshot.save 'textboxbefore.png'
t.value
t.fire_event('onchange')
b.screenshot.save 'textboxafter.png'
เอาต์พุต
การใช้ชื่อแท็ก
คุณสามารถค้นหาองค์ประกอบ html ที่คุณต้องการได้โดยตรงโดยใช้แท็ก html ดังที่แสดงด้านล่าง
สำหรับ div
browser.div(id: "divid")
browser.div(id: /divid/)
สำหรับช่วง
browser.span(id: "spanid")
browser.span(id: /spanid/)
สำหรับ p tag
browser.p(id: "ptag")
browser.p(id: /ptag/)
สำหรับปุ่ม
browser.button(id: "btnid")
browser.button(id: /btnid/)
การใช้ชื่อคลาส
คุณสามารถค้นหาองค์ประกอบโดยใช้ชื่อคลาส สามารถทำได้ดังที่แสดงด้านล่าง -
สำหรับ div
browser.div(class: "divclassname")
browser.div(class: /divclassname/)
สำหรับช่วง
browser.span(class: "spanclassname”)
browser.span(class: /spanclassname/)
สำหรับ p tag
browser.p(class: "pclassname")
browser.p(class: /pclassname/)
สำหรับปุ่ม
browser.button(class: "btnclassname")
browser.button(class: /btnclassname/)
สำหรับกล่องข้อความ
browser.text_field(class: 'txtclassname')
browser.text_field(class: /txtclassname/)
คุณยังสามารถผ่านหลายชั้นเรียนดังที่แสดงด้านล่าง -
สำหรับ div
browser.div(class: ["class1", "class2"])
การใช้ข้อความ
นี่เป็นอีกวิธีหนึ่งในการค้นหาองค์ประกอบโดยใช้องค์ประกอบที่มีข้อความ ตัวอย่างเช่น -
browser.button(text: "button text")
browser.button(text: /button text/)
การใช้ฉลาก
คุณสามารถใช้ป้ายกำกับขององค์ประกอบเพื่อค้นหาตามที่แสดงด้านล่าง -
browser.text_field(label: "text here"))
browser.text_field(label: /text here/))
การใช้คุณสมบัติข้อมูล
ในกรณีที่คุณมีแอตทริบิวต์ข้อมูลสำหรับแท็ก html ของคุณคุณสามารถค้นหาองค์ประกอบโดยใช้ดังที่แสดงด้านล่าง -
ตัวอย่างเช่นคุณสามารถค้นหาแท็กดังที่แสดงด้านล่าง -
<div data-type = "test1"></div>
คุณสามารถค้นหา div ดังต่อไปนี้ -
browser.div(data-type: 'test1'))
browser.div(data-type: /test1/))
การใช้คุณสมบัติที่กำหนดเอง
คุณยังสามารถค้นหาองค์ประกอบโดยใช้แอตทริบิวต์ที่กำหนดเองดังที่แสดงด้านล่าง -
ตัวอย่างองค์ประกอบ html
<div itemprop = ”content”>
….
</div>
คุณสามารถค้นหา div ดังต่อไปนี้ -
browser.div(itemprop: ‘content'))
browser.div(itemprop: /content/))
ใช้แอตทริบิวต์ที่มองเห็นได้
องค์ประกอบที่ใช้คุณลักษณะที่มองเห็นได้สามารถอยู่ได้ดังที่แสดงด้านล่าง -
browser.div(visible: true)
browser.div(visible: false)