>  기사  >  웹 프론트엔드  >  ChromeDriver를 사용하여 Python Selenium에서 CSS를 비활성화하는 방법은 무엇입니까?

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

Barbara Streisand
Barbara Streisand원래의
2024-11-08 14:42:02801검색

ChromeDriver를 사용하여 Python Selenium에서 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, 'style': 2}}
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')

결과

How to Disable CSS in Python Selenium using ChromeDriver?

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

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.