The dusk install command no longer works with the latest version of chrome 77
php artisan dusk:install
Dusk scaffolding installed successfully.
Downloading ChromeDriver binaries...
In ChromeDriverCommand.php line 172:
Undefined offset: 1
They have changed the HTML around the string
<li><span style="background-color:transparent">Latest stable </span>release: <a href="https://chromedriver.storage.googleapis.com/index.html?path=77.0.3865.40/" style="background-color:transparent" target="_blank">ChromeDriver 77.0.3865.40</a></li>
<li>Latest stable release: <a href="https://web.archive.org/web/20190705211833/https://chromedriver.storage.googleapis.com/index.html?path=75.0.3770.90/" style="background-color:transparent">ChromeDriver 75.0.3770.90</a></li>
it is now
<span style="background-color:transparent">Latest stable </span>release:
not
Latest stable release:
fixed by #674
When will the release occur?
Released v5.5.1 with the fix.
thanks
How about grabbing the release number from https://chromedriver.storage.googleapis.com/LATEST_RELEASE ?
@mattdfloyd Until yesterday, this file had been deprecated: https://bugs.chromium.org/p/chromedriver/issues/detail?id=3128
I'm already working on a PR.
Most helpful comment
@mattdfloyd Until yesterday, this file had been deprecated: https://bugs.chromium.org/p/chromedriver/issues/detail?id=3128
I'm already working on a PR.