baseUrl(); Browser::$storeScreenshotsAt = base_path('tests/Browser/screenshots'); Browser::$storeConsoleLogAt = base_path('tests/Browser/console'); Browser::$storeSourceAt = base_path('tests/Browser/source'); Browser::$userResolver = function () { return $this->user(); }; } /** * Create the RemoteWebDriver instance. * * @return \Facebook\WebDriver\Remote\RemoteWebDriver */ protected function driver() { return RemoteWebDriver::create( 'http://localhost:9515', DesiredCapabilities::chrome() ); } /** * Determine the application's base URL. * * @return string */ protected function baseUrl() { return rtrim(config('app.url'), '/'); } /** * Return the default user to authenticate. * * @return \App\User|int|null * * @throws \Exception */ protected function user() { throw new Exception('User resolver has not been set.'); } /** * Determine if the tests are running within Laravel Sail. * * @return bool */ protected static function runningInSail() { return isset($_ENV['LARAVEL_SAIL']) && $_ENV['LARAVEL_SAIL'] == '1'; } }