반응형
IE에서 Seleniu을 시작해보자
(그만해보자... 오랜만에 코드를 실행해보니, 작동이 안됨)
먼저, IE 드라이버 설치
https://www.selenium.dev/downloads/
다운로드 후, 압축을 풀어준다
- 코드
from selenium import webdriver
from selenium.webdriver.ie import service
import time
google= 'https://www.google.com'
ie_options = webdriver.IeOptions()
ie_options.ignore_protected_momde_settings = True
s=service.Service(r'C:\Users\user\Desktop\IEDriverServer_x64_4.14.0\IEDriverServer.exe')
driver = webdriver.Ie(service=s, options = ie_options)
driver.get(url=google)
- 실행결과
반응형
'개발기록 > python' 카테고리의 다른 글
[python] Selenium 활용 인터파크 티켓예매 매크로 만들기 (48) | 2023.11.30 |
---|---|
[python] 파이썬 버전별 가상환경 설치 (+virtualenv) (7) | 2023.11.05 |
[python] Selenium chrome에서 시작하기 (+ 크롬 브라우저, element, driver, alert 다루기) (2) | 2023.10.15 |
[python] Selenium (+ 엣지 브라우저) (2) | 2023.10.15 |
[python] Visual Studio Code에서 Python 시작하기 (+가상환경) (0) | 2023.09.17 |
댓글