When setting up the desired capabilities for the remote web driver there is a special option to ignore the zoom level. Here is an example in Java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private DesiredCapabilities setupInternetExplorerDriver() { | |
DesiredCapabilities c = DesiredCapabilities.internetExplorer(); | |
c.setCapability("ignoreZoomSetting", true); | |
return c; | |
} |
Then go ahead and setup your remote webdriver using those DesiredCapablities and you normally would. You should notice that even if IE is set to 50% zoom, webdriver will not complain.