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?