(self)
| 3586 | return (x, y) |
| 3587 | |
| 3588 | def get_screen_rect(self): |
| 3589 | self.__check_scope() |
| 3590 | if self.__is_cdp_swap_needed(): |
| 3591 | return self.cdp.get_screen_rect() |
| 3592 | self._check_browser() |
| 3593 | return self.driver.get_screen_rect() |
| 3594 | |
| 3595 | def get_window_rect(self): |
| 3596 | self.__check_scope() |
nothing calls this directly
no test coverage detected