Archives: February 2019
1 article
First time using Laravel Dusk? Here are a few errors and blunders and how to fix them
Fiddling with Laravel Dusk for the first time, I had to install the package:
$ composer require --dev laravel/dusk
I was still using Laravel 5.6 but the current dusk package was in version 5 which needed Laravel 5.7+. I checked Packagist and got a previous version. In my case it was:
$ composer require --dev laravel/dusk:4.0.5
Great, now I can start writing awesome tests! Oops, not so fast!
PHP Fatal error: Class 'Tests\DuskTestCase' not found
Because I RTFM too fast and skipped:
$ php artisan dusk:install
Dusk scaffolding installed successfully.
Great, now I can really start writing awesome tests!
...
Facebook\WebDriver\Exception\SessionNotCreatedException: session not created: Chrome version must be between 70 and 73
(Driver info: chromedriver=2.45.615279 (12b89733300bd268cff3b78fc76cb8f3a7cc44e5),platform=Linux 4.4.0-101-generic x86_6
4)
So maybe...
$ sudo apt-get update
$ sudo apt-get install chromium-browser
[…]
404 Not Found [IP: ...]
E: Failed to fetch http://security.ubuntu.com/ubuntu/pool/universe/c/chromium-browser/chromium-browser...
In that case, update Homestead first. Exit the box, $ vagrant box update
and finally install chromium.
$ php artisan dusk
YES! Never been so happy to see some good old failures!