Watir-自動待機
この章では、待機について詳しく理解しましょう。自動待機を理解するために、簡単なテストページを作成しました。ユーザーがテキストボックスにテキストを入力すると、onchangeイベントが発生し、3秒後にボタンが有効になります。
Watirには、特定のイベントまたはプロパティを待機するwait_unitapi呼び出しがあります。以下に示すように、テストページでも同じようにテストします。
構文
browser.button(id: 'btnsubmit').wait_until(&:enabled?)
//here the wait is on the button with id : btnsubmit to be enabled.
testwait.html
<html>
<head>
<title>Testing UI using Watir</title>
</head>
<body>
<script type = "text/javascript">
function wsentered() {
setTimeout(function() {
document.getElementById("btnsubmit").disabled = false; }, 3000);
}
function wsformsubmitted() {
document.getElementById("showmessage").style.display = "";
}
</script>
<div id = "divfirstname">
Enter First Name :
<input type = "text" id = "firstname" name = "firstname" onchange = "wsentered()" />
</div>
<br/>
<br/>
<button id = "btnsubmit" disabled onclick = "wsformsubmitted();">Submit</button>
<br/<
<br/<
<div id = "showmessage" style = "display:none;color:green;font-size:25px;">l;
Button is clicked
</div>
</body>
</html>
出力
テキストボックスにテキストを入力するときは、ボタンが有効になるまで3秒間待つ必要があります。
[送信]ボタンをクリックすると、次のテキストが表示されます-
ボタンを有効にするための遅延を追加したため、自動化でこのような場合を処理することは困難です。遅延がある場合、または要素のイベントまたはプロパティが見つかるのを待つ必要がある場合は、以下に示すようにwait_untilを使用できます。
wait_untilを使用したWatirコード
require 'watir'
b = Watir::Browser.new :chrome
b.goto('http://localhost/uitesting/testwait.html')
t = b.text_field(name: 'firstname')
t.exists?
t.set 'Riya Kapoor'
b.screenshot.save 'waittestbefore.png'
t.value
t.fire_event('onchange')
btn = b.button(id: 'btnsubmit').wait_until(&:enabled?)
btn.fire_event('onclick');
b.screenshot.save 'waittestafter.png'
次に、次のコマンドを使用します
btn = b.button(id: 'btnsubmit').wait_until(&:enabled?)
Watirは、ボタンが有効になるのを待ち、後でクリックイベントが発生するのを待ちます。キャプチャされたスクリーンショットを以下に示します-