java - Selenium with chrome return exception when handling alert -
i’ve been trying handle alert in selenium using chrome 54.0.2840.87 (currently latest chrome version) , chromedriver 2.25 (currently latest chromedriver) without success. i’ve made sure alert , not popup (there’s no inspect element option). also i’ve made sure there’s no timing issue, placing breakpoint before code handle alert, gives exception: org.openqa.selenium.noalertpresentexception: no alert open this code i’ve been trying use, without success: driver.switchto().alert().accept(); also tried wait alert present using code, without success: wait.until(expectedconditions.alertispresent()); also tried use javascript executescript accept alert without success: ((javascriptexecutor)m_driver).executescript("window.confirm = function(msg){return true;};"); link alert i’ve received: https://i.stack.imgur.com/n8fce.png thanks help. this not alert box. won't able handle in traditional way. workaround, can disable protocol handler box chrome local sta...