如何在 Python Selenium 中使用 ChromeDriver 和 ChromeOptions 禁用 CSS
问题陈述
禁用Chrome Selenium 中的 CSS 使用 ChromeDriver 对于提高页面加载速度是必要的。虽然禁用图像和 JavaScript 很简单,但尝试通过修改“profile.default_content_setting_values”首选项来禁用 CSS 似乎不起作用。
解决方案
禁用CSS 并显示没有它的页面,您可以使用以下内容代码:
from selenium import webdriver options = webdriver.ChromeOptions() prefs = {'profile.default_content_setting_values': {'cookies': 2, 'images': 2, 'javascript': 2, 'plugins': 2, 'popups': 2, 'geolocation': 2, 'notifications': 2, 'auto_select_certificate': 2, 'fullscreen': 2, 'mouselock': 2, 'mixed_script': 2, 'media_stream': 2, 'media_stream_mic': 2, 'media_stream_camera': 2, 'protocol_handlers': 2, 'ppapi_broker': 2, 'automatic_downloads': 2, 'midi_sysex': 2, 'push_messaging': 2, 'ssl_cert_decisions': 2, 'metro_switch_to_desktop': 2, 'protected_media_identifier': 2, 'app_banner': 2, 'site_engagement': 2, 'durable_storage': 2, 'css': 2}} # Add 'css': 2 to the dictionary to disable CSS options.add_experimental_option('prefs', prefs) options.add_argument("start-maximized") options.add_argument("disable-infobars") options.add_argument("--disable-extensions") driver = webdriver.Chrome(chrome_options=options, executable_path=r'C:\Utility\BrowserDrivers\chromedriver.exe') driver.get('https://play.google.com/store')
说明
此代码通过将 'css': 2 添加到字典来修改 'profile.default_content_setting_values' 首选项。这有效地禁用了 CSS。然后将浏览器选项配置为最大化窗口、禁用信息栏和禁用扩展。最后,所需的 URL 被加载到浏览器中。
以上是如何使用 ChromeDriver 和 ChromeOptions 禁用 Chrome Selenium 中的 CSS?的详细内容。更多信息请关注PHP中文网其他相关文章!