nunomaduro/laravel-console-dusk

driver

BSN4 opened this issue · 1 comments

BSN4 commented

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

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');
        });