How to disable all browser pop ups on Chrome for Phpunit ?
Hello Ian,
You may disable the browser pop-ups on Chrome using the following snippet in your testfile-
$options = (new ChromeOptions)->addArguments([
'---disable-notifications'
]);
How to disable all browser pop ups on Chrome for Phpunit ?
Hello Ian,
You may disable the browser pop-ups on Chrome using the following snippet in your testfile-
$options = (new ChromeOptions)->addArguments([
'---disable-notifications'
]);