mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 02:05:07 +02:00
This uses `Internals.click()` which doesn't do as much as the equivalent WebDriver method, but should be enough to satify most tests that use it.
20 lines
557 B
HTML
20 lines
557 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<title>TestDriver click 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>
|
|
|
|
<button type="button" id="button">Button</button>
|
|
|
|
<script>
|
|
async_test(t => {
|
|
let button = document.getElementById("button");
|
|
test_driver
|
|
.click(button)
|
|
.then(() => t.done())
|
|
.catch(t.unreached_func("click failed"));
|
|
});
|
|
</script>
|