How to disable all browser pop ups on Chrome using Php - Behat?
Hey Joe,
You could add some js to disable alerts when running your features with this step:
/**
* @When /^I disable the alerts$/
*/
public function iDisableTheAlerts()
{
$javascript = <<<JS
window.alert = function() {};
JS;
$this->getSession()->executeScript($javascript);
}