Skip to content

Commit

Permalink
Merge pull request #673 from catchpoint/fix_mouseclick
Browse files Browse the repository at this point in the history
Fix mouseclick command check
  • Loading branch information
lbartoli79 authored Nov 22, 2024
2 parents aa58ff0 + f259e17 commit 4cda383
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/devtools_browser.py
Original file line number Diff line number Diff line change
Expand Up @@ -777,7 +777,7 @@ def process_command(self, command):
if keyModifier in KeyModifiers.keys():
modifier = KeyModifiers[keyModifier]
self.devtools.keypress(command['target'], modifier)
elif command['command'] == 'mouseClick':
elif command['command'] == 'mouseclick':
if 'target' in command:
target = command['target']
separator = target.find('=')
Expand Down

0 comments on commit 4cda383

Please sign in to comment.