How to disable all browser pop ups on Chrome ?
Hey Ana-sousa,
You may disable the browser pop ups on Chrome using the following snippet in your DuskTestCase.php:
$options = (new ChromeOptions)->addArguments([
'---disable-notifications'
]);
How to disable all browser pop ups on Chrome ?
Hey Ana-sousa,
You may disable the browser pop ups on Chrome using the following snippet in your DuskTestCase.php:
$options = (new ChromeOptions)->addArguments([
'---disable-notifications'
]);