How to maximize browser window Php - Phpunit?

How can I maximize the browser window in Phpunit?

Hi Mark,

You may add the following snippet to maximize the browser window:

$this->driver->get('myurl/');
$this->driver->manage()->window()->setSize(new WebDriverDimension(1225, 996));

To import WebDriverDimensions add:

Facebook\WebDriver\WebDriverDimension;