Skip to content

Commit 4cda383

Browse files
authored
Merge pull request #673 from catchpoint/fix_mouseclick
Fix mouseclick command check
2 parents aa58ff0 + f259e17 commit 4cda383

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/devtools_browser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -777,7 +777,7 @@ def process_command(self, command):
777777
if keyModifier in KeyModifiers.keys():
778778
modifier = KeyModifiers[keyModifier]
779779
self.devtools.keypress(command['target'], modifier)
780-
elif command['command'] == 'mouseClick':
780+
elif command['command'] == 'mouseclick':
781781
if 'target' in command:
782782
target = command['target']
783783
separator = target.find('=')

0 commit comments

Comments
 (0)