반응형
ERROR: Could not find a version that satisfies the requirement seleniumrequests
글. 수알치 오상문
seleniumrequests 설치는 다음 명령을 이용합니다.
pip install selenium-requests
사용 예제는 다음과 같습니다.
# Import any WebDriver class that you would usually import from
# selenium.webdriver from the seleniumrequests module
from seleniumrequests import Firefox
# Simple usage with built-in WebDrivers:
webdriver = Firefox()
response = webdriver.request('GET', 'https://www.google.com/')
print(response)
# More complex usage, using a WebDriver from another Selenium-related module:
from seleniumrequests.request import RequestsSessionMixin
from someothermodule import CustomWebDriver
class MyCustomWebDriver(RequestsSessionMixin, CustomWebDriver):
pass
custom_webdriver = MyCustomWebDriver()
response = custom_webdriver.request('GET', 'https://www.google.com/')
print(response)
반응형
'웹 크롤링, 스크래핑' 카테고리의 다른 글
셀레리움 웹드라이버 최신 버전 관리 (0) | 2022.09.02 |
---|---|
파이썬, 셀레니움 Explicit Waits 예제 (0) | 2022.08.27 |
셀레니움, 영문 가이드 링크 (0) | 2022.08.27 |
파이썬, 셀레니움에서 파일 다운로드 및 스크린샷 저장하기 (0) | 2022.08.14 |
파이썬, 셀레니움 ActionChains 이용하기 (0) | 2022.08.13 |