반응형
사용중인 브라우저 버전을 얻으려면 어떻게해야합니까?
>>> from selenium import webdriver
>>> driver = webdriver.Firefox()
>>> print version <-- how to do this?
Firefox 12.0
해결 방법
print(driver.capabilities['version'])
참조 페이지 https://stackoverflow.com/questions/12556163
반응형
'파이썬' 카테고리의 다른 글
파이썬에서 MS 워드 파일에서 텍스트 추출 (0) | 2021.02.05 |
---|---|
파이썬 How can I tail a log file in Python? (0) | 2021.02.05 |
파이썬 how to turn on minor ticks only on y axis matplotlib (0) | 2021.02.04 |
파이썬 Pandas DataFrame에서 숫자가 아닌 열 삭제 (0) | 2021.02.04 |
파이썬 Python 요청 및 영구 세션 (0) | 2021.02.04 |
댓글