We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca1b070 commit 5fea863Copy full SHA for 5fea863
docs/w3c.md
@@ -15,6 +15,15 @@ driver.action
15
.move_to_location(500, 500).pointer_down(:left)
16
.move_to_location(0, 700)
17
.release.perform
18
+
19
+# multiple action chains
20
+a1 = driver.action.add_pointer_input(:touch, 'finger1') # some action chain
21
+a1.create_pointer_down(:left)
22
23
+a2 = driver.action.add_pointer_input(:touch, 'finger1') # some action chain
24
+a2.create_pointer_down(:left)
25
26
+driver.perform_actions [a1, a2]
27
```
28
29
# Note
0 commit comments