https://github.com/web-platform-tests/wpt
Revision e7b6f0759f42b858e6a671c98425c961a8370c62 authored by Charles Vazac on 04 April 2018, 02:35:53 UTC, committed by Charles Vazac on 04 April 2018, 02:35:53 UTC
2 parent s bcbb3c2 + 2b3f901
Raw File
Tip revision: e7b6f0759f42b858e6a671c98425c961a8370c62 authored by Charles Vazac on 04 April 2018, 02:35:53 UTC
Merge branch 'master' of github.com:w3c/web-platform-tests into server-timing-parsing-tests
Tip revision: e7b6f07
send_keys.html
<!DOCTYPE html>
<meta charset="utf-8">
<title>TestDriver send keys method</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-vendor.js"></script>

<input type="text" id="text">Text Input</button>

<script>
async_test(t => {
  let input_text = "Hello, wpt!";
  let text_box = document.getElementById("text");
  test_driver
    .send_keys(text_box, input_text)
    .then(() => {
      assert_true(text_box.value == input_text);
      t.done();
    })
    .catch(t.unreached_func("send keys failed"));
});
</script>
back to top