Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion py/selenium/webdriver/remote/webdriver.py
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ def get_pinned_scripts(self) -> list[str]:
"""
return list(self.pinned_scripts)

def execute_script(self, script: str, *args):
def execute_script(self, script: str, *args) -> dict[str, Any]:
Comment thread
cgoldberg marked this conversation as resolved.
Outdated
"""Synchronously Executes JavaScript in the current window/frame.

Args:
Expand Down
Loading