Sample Code :
from selenium import webdriver
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
caps = DesiredCapabilities.INTERNETEXPLORER
caps['ignoreProtectedModeSettings'] = True
browser = webdriver.Ie(capabilities=caps)
browser.get('http://www.google.com')
Internet Explorer is not launched and I am facing the below error :
SessionNotCreatedException: Message: Unexpected error launching Internet Explorer. Protected Mode settings are not the same for all zones. Enable Protected Mode must be set to the same value (enabled or disabled) for all zones.
I can not change the settings in the InternetExplorer. They are controlled by Admin.
I am stuck at this starting point only, can some one help ?