loginAs($this->getUser(), 'admin'); } public function setUp(): void { parent::setUp(); $this->boot(); } public function tearDown(): void { $this->destory(); parent::tearDown(); } /** * Prepare for Dusk test execution. * * @beforeClass * * @return void */ public static function prepare() { static::startChromeDriver(); } /** * Create the RemoteWebDriver instance. * * @return \Facebook\WebDriver\Remote\RemoteWebDriver */ protected function driver() { $options = (new ChromeOptions())->addArguments([ '--disable-gpu', '--headless', '--window-size=1920,1080', ]); return RemoteWebDriver::create( 'http://localhost:9515', DesiredCapabilities::chrome()->setCapability( ChromeOptions::CAPABILITY, $options ) ); } }