Is there a way to turn off JavaScript when using the InternetExplorerDriver?
I've tried the code below, but it doesn't appear to disable JavaScript:
self.selenium = webdriver.Remote(
command_executor="http://localhost:4444/wd/hub",
desired_capabilities={
'platform': 'WINDOWS',
'browserName': 'internet explorer',
'version': '',
'javascriptEnabled': False})