I am getting the zoom level error for IE which I understand is a known issue. I've been able to find a resolution for this in both Java and C# but I can't seem to find the workaround in Python. Here is what has been reported to work in Java and C#:
System.setProperty("webdriver.ie.driver", IEDriverLocation);
DesiredCapabilities caps = DesiredCapabilities.internetExplorer();
caps.setCapability("ignoreZoomSetting", true);
aDriver = new InternetExplorerDriver(caps);
Anyone have any experience doing the same thing in Python? I'd also be fine with a set zoom level to 100% but I have not been successful with any iteration of that phrase in python.