일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
- S3
- [초급(예비) 개발자 오픈소스 실무 역량강화 교육]
- CI/CD
- blinker
- 함수형 프로그래밍
- 고차함수
- selenium-wire
- 쿼리
- ds_store
- pandas
- OS
- Airflow
- functools.wraps
- reverse v.s. reversed
- 순수함수
- timestamp
- r-string
- Python
- 코딩 테스트
- os.path
- decorator
- sort(reverse=True) v.s. reverse
- sort v.s. sorted
- boto3
- slicing [::-1]
- PIP
- 생각
- Today
- Total
목록selenium-wire (2)
공부일지
작성일: 2024-10-08 selenium-wire option 설정하기이제 webdriver의 옵션을 설정하기 위해ChromeOptions의 객체를 만들어준다. (변수 options에 해당)from selenium.webdriver import ChromeOptions()...options = ChromeOptions()options.add_argument('--start-maximized')options.add_argument('--headless')options.add_argument(f'user-agent={useragent}')service = Service(executable_path=executable_path)driver = webdriver.Chrome(service=service,..
작성일: 2024-10-08 selenium-wire 완전히 설치하기pip install selenium-wire # seleniumwire로 쓰면 안 됨 설치는 안전하게 마무리됐지만selenium-wire를 import한 모듈을 실행시키니Error occured.No module named 'blinker._saferef' 아래 답변을 참고해서아래와 같이 blinker 모듈 버전 명시해서 설치했더니 해결됐다.pip install blinker==1.7.0더보기c.f.https://github.com/seleniumbase/SeleniumBase/issues/2782 Wire Mode: `No module named 'blinker._saferef'` if installing `selenium-wi..