/**
  * Checks if the maximized window setting is set. If true, apply it.
  *
  * @return $this|TestSuite Same instance for chained method calls.
  */
 private function _applyMaximizedWindowSetting()
 {
     if ($this->suiteSettings->isWindowsMaximized()) {
         $this->output('Maximize web driver window!');
         $this->webDriver->manage()->window()->maximize();
     }
     return $this;
 }