nunomaduro / laravel-console-dusk

Laravel Console Dusk allows the usage of Laravel Dusk in Laravel/Laravel Zero artisan commands.
MIT License
150 stars 20 forks source link

driver #5

Closed BSN4 closed 6 years ago

BSN4 commented 6 years ago

I need to change driver I couldn't find a way to do it .. driver method not triggered it seems it work differently than tests

BSN4 commented 6 years ago

If any one intersted I've been able to do it by making new Chrome.php inside my project and then calling browser:

      $browser = new Manager(new Chrome());
        $browser->browse($this, function ($browser) {
            $browser->visit('http://laravel-zero.com')
                ->assertSee('Collision');
        });