Chrome version must be between 70 and 73
(Driver info: chromedriver=2.45.615355 (d5698f682d8b2742017df6c81e0bd8e6a3063189),platform=Mac OS X 10.14.5 x86_64)

If you receive this error while running your Laravel Dusk test this means that the driver version that you have in your dusk package repository is Old and does not match up with the chrome browser version that you have installed in your system. You either need to downgrade the chrome version or upgrade the chromedriver version in Laravel Dusk.

Here is how you can update the chrome-driver version. Run the following command in your terminal.

php artisan dusk:chrome-driver 75

Make sure the driver number that you mention in the command matches with the chrome browser that you have installed in your machine.

Here is a compatibility match table between chomedriver and chrome browser

chromedriver chrome compatibility.

More Details on compatibility -> http://chromedriver.chromium.org/downloads

Comments