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 중국어 웹사이트의 기타 관련 기사를 참조하세요!