Skip to content

Commit

Permalink
Reland "[ChromeDriver] Set key modifiers with mouse actions"
Browse files Browse the repository at this point in the history
Landed in #15512.

Reverted in #16022.
  • Loading branch information
foolip committed Apr 2, 2019
1 parent c6e992e commit 4f4a598
Show file tree
Hide file tree
Showing 2 changed files with 76 additions and 0 deletions.
@@ -0,0 +1,9 @@
[actionsWithKeyPressed.html]
expected:
if product == "safari" or product == "firefox": ERROR


[TestDriver actions: actions with key pressed]
expected:
if product == "chrome": FAIL

67 changes: 67 additions & 0 deletions infrastructure/testdriver/actions/actionsWithKeyPressed.html
@@ -0,0 +1,67 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>TestDriver actions: actions with key pressed</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-actions.js"></script>
<script src="/resources/testdriver-vendor.js"></script>

<style>
div#test1, div#test2 {
position: fixed;
top: 0;
left: 0;
width: 100px;
height: 100px;
background-color: blue;
}

div#test2 {
position: fixed;
top: 100px;
left: 0;
width: 100px;
height: 100px;
background-color: green;
}
</style>

<div id="test1">
</div>

<div id="test2">
</div>

<script>
let keys = [];

async_test(t => {
let test1 = document.getElementById("test1");
let test2 = document.getElementById("test2");
document.getElementById("test1").addEventListener("click",
e => {keys.push(e.getModifierState("Control"))});
document.getElementById("test2").addEventListener("click",
e => {keys.push(e.getModifierState("Control"))});

let actions = new test_driver.Actions()
.keyDown("\uE009")
.addTick()
.pointerMove(0, 0, {origin: test1})
.pointerDown()
.pointerUp()
.pointerMove(0, 0, {origin: test2})
.pointerDown()
.pointerUp()
.addTick()
.keyUp("\uE009")
.addTick()
.pointerMove(0, 0, {origin: test1})
.pointerDown()
.pointerUp();

actions.send()
.then(t.step_func_done(() => assert_array_equals(keys, [true, true, false])))
.catch(e => t.step_func(() => assert_unreached("Actions sequence failed " + e)));
});
</script>

0 comments on commit 4f4a598

Please sign in to comment.