I am using Laravel Dusk for automated browser tests by running php artisan dusk
from the command line.
The website is available in English and French. Some tests depend on checking for the presence of certain strings (which may be in French or English depending on the chosen language of the user).
It would be nice if on the English version I could call something like:
php artisan dusk --language=en
and for french...
php artisan dusk --language=fr
Can this be done?