Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- Git
- Archive
- window
- geofencing
- Apple
- error
- Session
- appstore
- Realm
- 이미지
- MacOS
- 개발자
- 한글
- Firebase
- SwiftUI
- Xcode
- Notification
- rxswift
- IOS
- darkmode
- shorebird
- iOS16
- UIButton
- Code
- JPA
- Swift
- 웹뷰
- mac
- github
- FLUTTER
Archives
- Today
- Total
목록Selenium (1)
EEYatHo 앱 깎는 이야기
크롤링 ) Selenium
selenium 원래는 웹 어플리케이션 테스트 도구. 하지만 크롤링에서 많이 쓰이게 됨. 페이지 로딩 및 태그 선택 from selenium import webdriver # 브라우저 생성 browser = webdriver.Chrome("{chromedriver파일경로}") # 네이버 열기 browser.get("https://www.naver.com") browser.implicitly_wait(10) # 웹사이트 로딩 10초 기다려주기 (10초 안에 로딩되면 바로 넘어감) # 쇼핑 메뉴 열기 browser.find_element(By.CSS_SELECTOR, value="a.nav.shop").click() 클릭 및 문자 입력 from selenium.webdriver.common.keys impo..
Server/크롤링
2023. 3. 15. 22:27