(self)
| 1197 | |
| 1198 | @property |
| 1199 | def script(self) -> Script: |
| 1200 | if not self._websocket_connection: |
| 1201 | self._start_bidi() |
| 1202 | |
| 1203 | if not self._script: |
| 1204 | self._script = Script(self._websocket_connection, self) |
| 1205 | |
| 1206 | return self._script |
| 1207 | |
| 1208 | def _start_bidi(self) -> None: |
| 1209 | if self.caps.get("webSocketUrl"): |
nothing calls this directly
no test coverage detected