How to handle/accept JS Alerts in PhantomJS using WebDriver?
问题 Being new to PhantomJSDriver for Selenium, how does it handle JS alerts? I've found the JSPhantom onAlert documentation, but what would the equivalent PhantomJSDriver code for Driver.SwitchTo().Alert().Accept(); be? At the moment, I've returning early with a guard clause for PhantomJSDriver , to stop exceptions, but how should js alerts in PhantomJS be interacted with? 回答1: I had similar problems with PhantomJS Web Driver handling alerts. The below code seems to resolve the issue. This is a C