Interact with sweet alert in Laravel dusk

0

How I could interact with the alert of sweet alert ( link ) in laravel dusk I tried, this but it does not work

public function testBusquedaRVacio()
{
   $this->browse(function (Browser $browser) {

       $browser->maximize()
           ->visit('/busqueda/')
           ->resize(1500, 768)
           ->assertSee('campo')
           ->click('#buscar_campo')
           ->acceptDialog();
   });
}
    
asked by Francisco Quijada 22.02.2018 в 18:11
source

0 answers