(self)
| 3607 | return self.driver.get_window_size() |
| 3608 | |
| 3609 | def get_window_position(self): |
| 3610 | self.__check_scope() |
| 3611 | if self.__is_cdp_swap_needed(): |
| 3612 | return self.cdp.get_window_position() |
| 3613 | self._check_browser() |
| 3614 | return self.driver.get_window_position() |
| 3615 | |
| 3616 | def set_window_rect(self, x, y, width, height): |
| 3617 | self.__check_scope() |
no test coverage detected