Set the dimensions of the window.
int $width set the window width, measured in pixels:
int $height set the window height, measured in pixels:
string|null $name window name (null for the main window):
void
public function resizeWindow(int $width, int $height, ?string $name = null) { $this->driver ->resizeWindow($width, $height, $name); }