Watir - Individuazione di elementi web
In Watir per il test, è necessario individuare gli elementi e può essere fatto in diversi modi: utilizzando l'id, la classe o il testo dell'elemento.
In questo capitolo, vedremo alcuni esempi che mostrano diversi modi per individuare gli elementi.
Utilizzo dell'ID dell'elemento
Pagina di prova
<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>
Esempio
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'
In questo esempio, stiamo usando l'id dell'elemento textbox per individuarlo e impostare il valore.
t = b.text_field(id: 'firstname')
Produzione
Nel caso in cui sia necessario individuare il div, lo span o qualsiasi altro tag html, puoi fare lo stesso utilizzando id come segue:
Per div
browser.div(id: "divid")
browser.div(id: /divid/)
Per span
browser.span(id: "spanid")
browser.span(id: /spanid/)
Utilizzo di NAME of the Element
Pagina di prova
<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>
Esempio
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'
Produzione
Utilizzo del nome del tag
Puoi individuare tutti gli elementi html che desideri utilizzando direttamente il tag html come mostrato di seguito.
Per div
browser.div(id: "divid")
browser.div(id: /divid/)
Per span
browser.span(id: "spanid")
browser.span(id: /spanid/)
Per tag p
browser.p(id: "ptag")
browser.p(id: /ptag/)
Per il pulsante
browser.button(id: "btnid")
browser.button(id: /btnid/)
Utilizzo del nome della classe
È possibile individuare l'elemento utilizzando il suo nome di classe. Può essere fatto come mostrato di seguito -
Per div
browser.div(class: "divclassname")
browser.div(class: /divclassname/)
Per span
browser.span(class: "spanclassname”)
browser.span(class: /spanclassname/)
Per tag p
browser.p(class: "pclassname")
browser.p(class: /pclassname/)
Per il pulsante
browser.button(class: "btnclassname")
browser.button(class: /btnclassname/)
Per la casella di testo
browser.text_field(class: 'txtclassname')
browser.text_field(class: /txtclassname/)
Puoi anche passare più classi come mostrato di seguito:
Per div
browser.div(class: ["class1", "class2"])
Utilizzando il testo
Questo è ancora un altro modo per individuare gli elementi utilizzando elementi con un testo. Ad esempio:
browser.button(text: "button text")
browser.button(text: /button text/)
Utilizzo dell'etichetta
È possibile utilizzare l'etichetta dell'elemento per individuarlo come mostrato di seguito:
browser.text_field(label: "text here"))
browser.text_field(label: /text here/))
Utilizzo degli attributi dei dati
Nel caso in cui tu abbia attributi di dati per i tuoi tag html, puoi individuare gli elementi che li utilizzano come mostrato di seguito -
Ad esempio, puoi individuare il tag come mostrato di seguito:
<div data-type = "test1"></div>
Puoi individuare il div come segue:
browser.div(data-type: 'test1'))
browser.div(data-type: /test1/))
Utilizzo di attributi personalizzati
Puoi anche individuare gli elementi utilizzando gli attributi personalizzati come mostrato di seguito:
Esempio di elemento html
<div itemprop = ”content”>
….
</div>
Puoi individuare il div come segue:
browser.div(itemprop: ‘content'))
browser.div(itemprop: /content/))
Utilizzo dell'attributo visibile
L'elemento che utilizza l'attributo visibile può essere posizionato come mostrato di seguito:
browser.div(visible: true)
browser.div(visible: false)