How to ignore zoom setting
IE ignore zoom setting doesn't work, my code as below, why it doesn't work? I got the error message (selenium.common.exceptions.SessionNotCreatedException: Message: Unexpected error launching Internet Explorer. Browser zoom level was set to 125%. It should be set to 100%) from selenium.webdriver import Ie from selenium.webdriver.ie.options import Options opts = Options() opts.ignore_protected_mode_settings = True driver = Ie(options=opts) No , while working with InternetExplorerDriver you shouldn't ignore the browser zoom settings. As per the Official Documentation of InternetExplorerDriver