Watir - Capturando telas
A capacidade de capturar imagens é um dos recursos interessantes disponíveis no Watir. Durante a automação do teste, você pode fazer capturas de tela e salvar as telas. No caso, se ocorrer algum erro, o mesmo pode ser documentado com a ajuda de screenshot.
Um exemplo simples junto com a página de teste onde tiramos a captura de tela é discutido abaixo -
Sintaxe
browser.screenshot.save 'nameofimage.png'
Página de teste
<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>
Exemplo
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'
As capturas de tela que tiramos usando Watir são mostradas aqui -