selenium으로 하드웨어 가속을 꺼보도록 하겠다.
굉장히 간단하다
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--disable-gpu')
driver = webdriver.Chrome(options=options)
driver.get("https://www.google.com/")
ChromeOptions()로 객체를 만들고,
생성된 객체에 원하는 옵션을 입력한다.
options를 드라이버의 생성자에 넘겨주면 끝이다.
그리고 get으로 웹을 열어서 확인해보면,
하드웨어 가속이 꺼진 효과가 난다.
(단, 크롬의 설정창에 직접 들어갔을때는, 하드웨어 가속이 켜져있다고 표시된다. 하지만 실제로는 꺼져있다)
답글을 달아보도록 하겠다.
간단하다.