(self, script, timeout=None)
| 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, |
no test coverage detected