(self)
| 460 | self.cdp.tab_new(str(url)) |
| 461 | |
| 462 | def tab_list(self): |
| 463 | if not hasattr(self, "cdp"): |
| 464 | self.cdp = CDP(self.options) |
| 465 | |
| 466 | retval = self.get(self.cdp.endpoints["list"]) |
| 467 | return [PageElement(o) for o in retval] |
| 468 | |
| 469 | def reconnect(self, timeout=0.1): |
| 470 | """This can be useful when sites use heavy detection methods: |
nothing calls this directly
no test coverage detected