| 1 | <?php |
||
| 13 | trait WindowResizer |
||
| 14 | { |
||
| 15 | private $desktopWidth = 1920; |
||
| 16 | private $desktopHeight = 1080; |
||
| 17 | private $mobileWidth = 320; |
||
| 18 | private $mobileHeight = 568; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Resize window to desktop size |
||
| 22 | * |
||
| 23 | * @param DriverInterface $driver |
||
| 24 | */ |
||
| 25 | public function resizeToDesktopWindow(DriverInterface $driver) |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Resize window to mobile size |
||
| 32 | * |
||
| 33 | * @param DriverInterface $driver |
||
| 34 | */ |
||
| 35 | public function resizeToMobileWindow(DriverInterface $driver) |
||
| 39 | } |
||
| 40 |