Skip to content

Instantly share code, notes, and snippets.

@huguogang
Last active December 25, 2015 06:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save huguogang/6930106 to your computer and use it in GitHub Desktop.
Save huguogang/6930106 to your computer and use it in GitHub Desktop.
sample code to ask Selenium WebDriver to ignore IE zoom level
// ask IE to ignore zoom level, otherwise IE may have problem starting
DesiredCapabilities caps = DesiredCapabilities
.internetExplorer();
caps.setCapability("ignoreZoomSetting", true);
driver = new InternetExplorerDriver(caps);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment