(self)
| 1211 | |
| 1212 | @property |
| 1213 | def script(self) -> Script: |
| 1214 | if not self._websocket_connection: |
| 1215 | self._start_bidi() |
| 1216 | |
| 1217 | if not self._script: |
| 1218 | self._script = Script(self._websocket_connection, self) |
| 1219 | |
| 1220 | return self._script |
| 1221 | |
| 1222 | def _start_bidi(self) -> None: |
| 1223 | if self.caps.get("webSocketUrl"): |
nothing calls this directly
no test coverage detected