(
self, event: str, predicate: Callable = None, timeout: float = None
)
| 999 | return EventContextManagerImpl(waiter.result()) |
| 1000 | |
| 1001 | async def wait_for_event( |
| 1002 | self, event: str, predicate: Callable = None, timeout: float = None |
| 1003 | ) -> Any: |
| 1004 | async with self.expect_event(event, predicate, timeout) as event_info: |
| 1005 | pass |
| 1006 | return await event_info |
| 1007 | |
| 1008 | def _on_frame_sent(self, opcode: int, data: str) -> None: |
| 1009 | if opcode == 2: |
nothing calls this directly
no test coverage detected