Answer by René Höhle for Unable to run Laravel Browser Test with Dusk
I've found some interesting Issues on Github that should be your problem. https://github.com/laravel/dusk/issues/651 I think that is a problem with the Driver. Perhaps you can find a solutions and...
View ArticleUnable to run Laravel Browser Test with Dusk
I am setting up Browser Test with Laravel 5.7. Install Laravel Dusk. My very beginning php artisan dusk command return errors My Chrome is version 76. Initially, I see "Chrome version must be between...
View ArticleAnswer by Danny Thompson for Unable to run Laravel Browser Test with Dusk
Make sure host and Dusk are using the same Chromium driver:# linux box chromium-browser --version # install specific version on dusk php artisan dusk:chrome-driver 78 I was running dusk through...
View ArticleAnswer by Neo for Unable to run Laravel Browser Test with Dusk
I was having same issue and managed to fix it, luckily I had another latest Laravel installation that had a higher dusk version that was working. The old version would not work with the same version of...
View Article