강의

멘토링

커뮤니티

Cộng đồng Hỏi & Đáp của Inflearn

Hình ảnh hồ sơ của hanjoongyoo0652
hanjoongyoo0652

câu hỏi đã được viết

Công thức Python - Giới thiệu về Sử dụng Web (bao gồm sách điện tử)

[Web Automation] 4. Tải Twitch Clip - Ẩn cửa sổ Chrome

headless 옵션 시 warning

Viết

·

2.5K

1

C:/Users/user/Desktop/hotch/02 selenium/twitch.py:7: DeprecationWarning: use options instead of chrome_options
  driver = webdriver.Chrome('chromedriver', chrome_options=options)

options = webdriver.ChromeOptions()
options.add_argument('headless')

driver = webdriver.Chrome('chromedriver', chrome_options=options)

이렇게 실행시켰을 때,

이와 같은 경고가 발생합니다.

무엇이 문제인지 알고싶습니다

python

Câu trả lời 2

2

soorte2140795님의 프로필 이미지
soorte2140795
Người chia sẻ kiến thức

options.add_argument('headless')

 

options.headless = True

로 변경해보시겠어요?

1

hanjoongyoo0652님의 프로필 이미지
hanjoongyoo0652
Người đặt câu hỏi

같은 경고문이 뜨네요 경고문을 다시읽어보니 chrome_options 대신 options를 쓰라고 하는 것같아서

그렇게 바꾸니까 경고문이 사라졌습니다!

Hình ảnh hồ sơ của hanjoongyoo0652
hanjoongyoo0652

câu hỏi đã được viết

Đặt câu hỏi