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