我正在尝试使用Python中的Selenium和chrome浏览器来自动化过程。
我的浏览器适用于大多数页面,但无法渲染包括chrome://version/
在内的一些页面。
对于常规自动化(无头),它会正确返回页面和页面源,而对于无头浏览,它将返回具有页面源的空白页面,如下所示:
<html><head></head><body></body></html>
我已经在其他操作系统(包括OpenSUSE,Fedora和Windows)中尝试了chrome。 我已经尝试过很多事情,例如: 删除所有初始参数, 在关闭浏览器的情况下使用浏览器。 以供参考: 如果我运行此代码
from selenium.webdriver import Chrome
from selenium.webdriver import ChromeOptions
options = ChromeOptions()
# to remove all arguments
options.add_experimental_option( 'excludeSwitches', ['disable-hang-monitor', 'disable-prompt-on-repost', 'disable-background-networking', 'disable-sync', 'disable-translate', 'disable-web-resources', 'disable-client-side-phishing-detection', 'disable-component-update', 'disable-default-apps', 'disable-zero-browsers-open-for-tests', '--enable-automation', '--use-mock-keychain', '--user-data-dir', '--enable-blink-features', '--disable-popup-blocking', '--enable-logging --force-fieldtrials=SiteIsolationExtensions/Control', '--enable-logging', '--force-fieldtrials', '--ignore-certificate-errors', '--load-extension', '--log-level', '--no-first-run','--password-store','--remote-debugging-port','--test-type'
])
options.add_argument("--headless")
options.add_argument("--no-sandbox")
browser = Chrome(executable_path=driver_path,options=options)
browser.get("chrome://version")
print(browser.page_source)
它为 headless
返回相同的空白页<html><head></head><body></body></html>
如果不使用无头选项操作镀铬,它将完全正常工作。
<!doctype html>
<!--
about:version template page
-->
<html id="t" dir="ltr" lang="en">
<head>
<meta charset="utf-8">
<title>About Version</title>
<link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
<link rel="stylesheet" href="chrome://version/about_version.css">
......................