3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Laravel Duskエラー 「Facebook\WebDriver\Exception\UnknownErrorException: unknown error: net::ERR_CONNECTION_REFUSED」

Posted at

発生したタイミング

 テストコード作成後、下記コマンド実行時にタイトル記載のエラーが表示

php artisan dusk

原因

 調べるとどうやら.envに記載したAPP_URLパラメータの値が間違っている模様

原因解決

 .envのAPP_URLパラメータの値をブラウザからアクセスするアプリケーションで使用するURLと一致させる。
 現在デプロイをしておらずローカル環境だった為下記のように変更する。

APP_URL=http://localhost:8000/

修正後コマンド実行

これで解決したと思い再度php artisan duskを実行すると......。
同じエラーが。
.......原因はサーバーを立ち上げていなかったから。
下記コマンドでサーバーを立ち上げ。。。。

php artisan serve

新規タブで

php artisan dusk

これで無事テストが実行されました!!!
以上

3
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?