python – 如何忽略缩放设置
作者:互联网
IE忽略缩放设置不起作用,我的代码如下,为什么它不起作用?我收到错误消息(selenium.common.exceptions.SessionNotCreatedException:消息:启动Internet Explorer时出现意外错误.浏览器缩放级别设置为125%.应设置为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)
解决方法:
不,在使用InternetExplorerDriver时,您不应忽略浏览器缩放设置.
根据InternetExplorerDriver的官方文档,Required Configuration
提到了有关浏览器缩放级别的以下内容
The browser zoom level must be set to 100% so that the native mouse events can be set to the correct coordinates.
由于浏览器缩放级别设置为125%,因此您会看到错误.作为解决方案,您必须将浏览器缩放级别设置回100%.
更新
虽然您没有回复/评论我的答案,这是根据您的问题构建的,我可以从您的问题更新中观察到您正在尝试将属性ignore_protected_mode_settings设置为True.为此,您需要使用DesiredCapabilities()类的实例并按如下方式配置WebDriver实例:
from selenium import webdriver
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
cap = DesiredCapabilities().INTERNETEXPLORER
cap['ignoreZoomSetting'] = True
browser = webdriver.Ie(capabilities=cap, executable_path=r'C:\path\to\IEDriverServer.exe')
browser.get('http://google.com/')
browser.quit()
标签:python,selenium,selenium-webdriver,selenium-iedriver,iedriverserver 来源: https://codeday.me/bug/20191002/1844754.html