I'm getting an error trying to launch IE w/ Selenium Web Driver.
Enable Protected Mode must be set to the same value (enabled or disabled) for all zones. (NoSuchDriver).
I know one fix is to resolve the actual problem, but I'm more concerned with making my code able to work around the issue.
I've seen this fix in C#, but I don't know how I can use this in VBA. Any pointers? --> https://stackoverflow.com/a/13384197/5079799
var options = new InternetExplorerOptions;
options.IntroduceInstabilityByIgnoringProtectedModeSettings = true;
var driver = new InternetEplorerDriver(options);