From 789b80b8974358e2336ab186ed594fbff6638a1b Mon Sep 17 00:00:00 2001 From: Mior Muhammad Zaki Date: Sun, 23 Jul 2023 15:14:19 +0800 Subject: [PATCH] wip --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 9417fea..6289100 100644 --- a/README.md +++ b/README.md @@ -7,13 +7,13 @@ Updater for Laravel Dusk ChromeDriver binaries [![Latest Unstable Version](https://poser.pugx.org/orchestra/dusk-updater/v/unstable)](//packagist.org/packages/orchestra/dusk-updater) [![License](https://poser.pugx.org/orchestra/dusk-updater/license)](https://packagist.org/packages/orchestra/dusk-updater) -> This is a fork based on [staudenmeir/dusk-updater](https://github.com/staudenmeir/dusk-updater) but uses Symfony Console to allow it to be use outside of Laravel installation. +> This is a fork based on [staudenmeir/dusk-updater](https://github.com/staudenmeir/dusk-updater) but uses Symfony Console to allow it to be used outside of Laravel installation. ## Introduction This Symfony command updates your Laravel Dusk ChromeDriver binaries to the latest or specified release. -Supports all versions of Laravel Dusk especially used outside of Laravel installation. +Supports all versions of Laravel Dusk especially those used outside of Laravel installation. ## Installation @@ -29,11 +29,11 @@ Download the latest stable ChromeDriver release: You can also specify the major Chrome/Chromium version you are using: - ./vendor/bin/dusk-updater update 74 + ./vendor/bin/dusk-updater update 109 Or you directly specify the desired ChromeDriver version: - ./vendor/bin/dusk-updater update 74.0.3729.6 + ./vendor/bin/dusk-updater update 109.0.5414.74 > If Dusk is still using the previous version after the update, there is probably an old ChromeDriver process running that you need to terminate first. @@ -43,12 +43,12 @@ You can check if the installed Chrome and ChromeDriver version using: ./vendor/bin/dusk-updater detect -> The command will prompt you to download new ChromeDriver if it is outdated. +> The command will prompt you to download a new ChromeDriver if it is outdated. Specify the absolute path to your custom Chrome/Chromium installation (not supported on Windows): ./vendor/bin/dusk-updater detect --chrome-dir=/usr/bin/google-chrome -Finally, you can also tell the command to automatically downlad new version if it is outdated using: +Finally, you can also tell the command to automatically download a new version if it is outdated using: ./vendor/bin/dusk-updater detect --auto-update