我尝试在远程模式下运行seleniumwire驱动程序。问题是我不太明白官方文档中的一些说明:https://pypi.org/project/selenium-wire/#all-options
options = {
'addr': 'hostname_or_ip' # Address of the machine running Selenium Wire. Explicitly use 127.0.0.1 rather than localhost if remote session is running locally.
}
driver = webdriver.Remote(
command_executor='http://www.example.com',
seleniumwire_options=options
)
我在哪里可以找到IP的主机名?一开始我以为它可能是我用来连接selenium网格的地址,类似于'http://hub.selenium-grid:4444/wd/hub'。但是它引发了一个错误:
E seleniumwire.thirdparty.mitmproxy.exceptions.ServerException: Error starting proxy server: gaierror(-2, 'Name or service not known')
那么,如果它不是正确的“地址”,我应该用什么来代替呢?
1条答案
按热度按时间dwbf0jvd1#
我找到了解决办法:https://github.com/wkeeling/selenium-wire/issues/327当我使用真实的的ip时它对我有效,而不是127.0.0.1我希望它对你有用
我的代码(端口9922是任意的,只要端口未被使用):