(self)
| 1222 | |
| 1223 | @property |
| 1224 | def network(self) -> Network: |
| 1225 | if not self._websocket_connection: |
| 1226 | self._start_bidi() |
| 1227 | |
| 1228 | assert self._websocket_connection is not None |
| 1229 | if not hasattr(self, "_network") or self._network is None: |
| 1230 | assert self._websocket_connection is not None |
| 1231 | self._network = Network(self._websocket_connection) |
| 1232 | |
| 1233 | return self._network |
| 1234 | |
| 1235 | @property |
| 1236 | def browser(self) -> Browser: |
nothing calls this directly
no test coverage detected