Watir - Trabalhando com Iframes
Watir oferece uma sintaxe fácil de usar para trabalhar com iframes.
Sintaxe
browser.iframe(id: 'myiframe')
// will get the reference of the iframe where we want to input details.
Para entender como lidar com iframes e localizar os elementos dentro de um iframe, neste capítulo, trabalharemos em um exemplo.
Exemplo
main.html
<html>
<head>
<title>Testing using Watir</title>
</head>
<body>
<iframe src = "test1.html" id = "myiframe" width = "500" height = "100"></iframe>
</body>
</html>
test1.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>
Resultado
No exemplo acima, o formulário de entrada é definido dentro de um iframe. O código Watir que nos ajudará a localizá-lo e testar o formulário é fornecido abaixo -
Código Watir
require 'watir'
b = Watir::Browser.new :chrome
b.goto('http://localhost/uitesting/main.html')
t = b.iframe(id: 'myiframe').text_field
t.set 'Riya Kapoor'
b.screenshot.save 'iframetestbefore.png'
t.fire_event('onchange')
b.screenshot.save 'iframetestafter.png'
Código Watir para localizar o iframe no url fornecido aqui -
t = b.iframe(id: 'myiframe').text_field
Usamos o nome da tag iframe e o id do iframe conforme mostrado acima.
As capturas de tela do código acima são mostradas abaixo -