ChromeOptions와 함께 ChromeDriver를 사용하여 Chrome Selenium에서 CSS를 비활성화하는 방법은 무엇입니까?

DDD
풀어 주다: 2024-11-12 20:35:02
원래의
148명이 탐색했습니다.

How to Disable CSS in Chrome Selenium Using ChromeDriver with ChromeOptions?

ChromeDriver를 ChromeOptions와 함께 사용하여 Python Selenium에서 CSS를 비활성화하는 방법

문제 설명

비활성화 페이지 로딩 속도를 높이려면 ChromeDriver를 사용하는 Chrome Selenium의 CSS가 필요합니다. 이미지와 JavaScript를 비활성화하는 것은 간단하지만 'profile.default_content_setting_values' 기본 설정을 수정하여 CSS를 비활성화하려고 시도하는 것은 작동하지 않는 것 같습니다.

해결책

비활성화하려면 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')
로그인 후 복사

설명

이 코드는 'profile.default_content_setting_values' 기본 설정에 ' css': 2를 사전에 추가합니다. 이렇게 하면 CSS가 효과적으로 비활성화됩니다. 그런 다음 창을 최대화하고, 정보 표시줄을 비활성화하고, 확장 기능을 비활성화하도록 브라우저 옵션이 구성됩니다. 마지막으로 원하는 URL이 브라우저에 로드됩니다.

위 내용은 ChromeOptions와 함께 ChromeDriver를 사용하여 Chrome Selenium에서 CSS를 비활성화하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿