Skip to content

Commit 5fad608

Browse files
committed
[py] fix PointerInput kind in w3c ActionBuilder
Signed-off-by: Lucas Tierney <[email protected]>
1 parent 04f9698 commit 5fad608

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

py/selenium/webdriver/common/actions/action_builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
class ActionBuilder(object):
2727
def __init__(self, driver, mouse=None, keyboard=None):
2828
if mouse is None:
29-
mouse = PointerInput(interaction.POINTER, "mouse")
29+
mouse = PointerInput(interaction.POINTER_MOUSE, "mouse")
3030
if keyboard is None:
3131
keyboard = KeyInput(interaction.KEY)
3232
self.devices = [mouse, keyboard]

0 commit comments

Comments
 (0)