MCPcopy Index your code
hub / github.com/seleniumbase/SeleniumBase / execute_async_script

Method execute_async_script

seleniumbase/fixtures/base_case.py:3516–3521  ·  view source on GitHub ↗
(self, script, timeout=None)

Source from the content-addressed store, hash-verified

3514 return self.driver.execute_cdp_cmd(script, *args, **kwargs)
3515
3516 def execute_async_script(self, script, timeout=None):
3517 self.__check_scope()
3518 self._check_browser()
3519 if not timeout:
3520 timeout = settings.EXTREME_TIMEOUT
3521 return js_utils.execute_async_script(self.driver, script, timeout)
3522
3523 def safe_execute_script(self, script, *args, **kwargs):
3524 """When executing a script that contains a jQuery command,

Callers 1

execute_async_scriptFunction · 0.80

Calls 2

__check_scopeMethod · 0.95
_check_browserMethod · 0.95

Tested by

no test coverage detected