Returns the websocket URL of the active tab. The websocket URL starts with `ws://`.
(self)
| 250 | return self.get_rd_port() |
| 251 | |
| 252 | def get_websocket_url(self): |
| 253 | """Returns the websocket URL of the active tab. |
| 254 | The websocket URL starts with `ws://`.""" |
| 255 | return self.get_active_tab().websocket_url |
| 256 | |
| 257 | def add_handler(self, event, handler): |
| 258 | self.page.add_handler(event, handler) |
nothing calls this directly
no test coverage detected