I have a Laravel Project (5.4) with about 8 Dusk Test files. I also have a Selenium Grid running with 8 Chrome Nodes.
I want to send one Laravel Dusk Test file to each Chrome Node. Is there an easy way to do so? or is it even feasible? I have a way now but it is manually typing in each @group
tag when running dusk.
i.e. I open multiple powershell windows and type php artisan dusk --group=NAME_OF_TEST
into each and press enter.
Ex. php artisan dusk --distribute
This would then start multiple Chromedrivers in DuskTestCase.php
and send them, at the same time, to the Selenium Grid's URL.
Thanks again for your time!