We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ab1b31 commit 3391ab1Copy full SHA for 3391ab1
src/SeleniumLibrary/keywords/javascript.py
@@ -73,7 +73,7 @@ def execute_javascript(self, *code: Union[WebElement, str]) -> Any:
73
return self.driver.execute_script(js_code, *js_args)
74
75
@keyword
76
- def execute_async_javascript(self, *code: str) -> Any:
+ def execute_async_javascript(self, *code: Union[WebElement, str]) -> Any:
77
"""Executes asynchronous JavaScript code with possible arguments.
78
79
Similar to `Execute Javascript` except that scripts executed with
0 commit comments