(self, x, y, width, height)
| 3614 | return self.driver.get_window_position() |
| 3615 | |
| 3616 | def set_window_rect(self, x, y, width, height): |
| 3617 | self.__check_scope() |
| 3618 | if self.__is_cdp_swap_needed(): |
| 3619 | self.cdp.set_window_rect(x, y, width, height) |
| 3620 | return |
| 3621 | self._check_browser() |
| 3622 | self.driver.set_window_rect(x, y, width, height) |
| 3623 | self.__demo_mode_pause_if_active(tiny=True) |
| 3624 | |
| 3625 | def set_window_size(self, width, height): |
| 3626 | self.__check_scope() |
no test coverage detected