(self)
| 1236 | |
| 1237 | @property |
| 1238 | def network(self) -> Network: |
| 1239 | if not self._websocket_connection: |
| 1240 | self._start_bidi() |
| 1241 | |
| 1242 | assert self._websocket_connection is not None |
| 1243 | if not hasattr(self, "_network") or self._network is None: |
| 1244 | assert self._websocket_connection is not None |
| 1245 | self._network = Network(self._websocket_connection) |
| 1246 | |
| 1247 | return self._network |
| 1248 | |
| 1249 | @property |
| 1250 | def browser(self) -> Browser: |
nothing calls this directly
no test coverage detected