일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 우분투
- 파이썬 알고리즘
- data communication
- 데이터베이스
- 파이썬
- Rust
- 백준
- Python challenge
- Python
- 자바 개념
- OS
- 러스트 프로그래밍 공식 가이드
- ubuntu
- Database
- 자바 기초
- Reversing
- java
- Operating System
- C
- 러스트
- 알고리즘
- 러스트 예제
- 자바
- 백준 러스트
- 오라클
- 파이썬 챌린지
- 운영체제
- 데이터 통신
- 파이썬 첼린지
- 오라클DB
- Today
- Total
목록파이썬 selenium (3)
IT’s Portfolio
저번에 제작했던 자동화 스크립트에 프로필 접근과 bs4 코드만 붙이면 크롤링 스크립트가 완성된다. 아직 스크립트를 짜지 못했다면 다시 보고오도록 하자. => https://it-neicebee.tistory.com/74 [Python] selenium으로 페이스북 자동 로그인/로그아웃 하기 어제 selenium을 맛봤으니 오늘은 페이스북 자동 로그인/로그아웃 스크립트를 짜보자 준비물: 아이유의 블루밍을 들으면서 해보자 import from selenium import webdriver from selenium.webdriver.common.keys i.. it-neicebee.tistory.com coding my_profile = driver.find_elements_by_xpath("//*[@id='..
어제 selenium을 맛봤으니 오늘은 페이스북 자동 로그인/로그아웃 스크립트를 짜보자 준비물: 아이유의 블루밍을 들으면서 해보자 import from selenium import webdriver from selenium.webdriver.common.keys import Keys from selenium.webdriver.chrome.options import Options import time webdriver, Keys, Options, time을 import한다. coding path = "C:/Python Library/chrome_driver/chromedriver" url = "https://www.facebook.com/" id = "" pw = "" # 크롬 옵션 정의 (1이 허용, 2..
지금까지 크롤링을 requests와 bs4로만 해오던 나에게 selenium이라는 킹갓제너럴 모듈이 강림했다. 오늘부터는 selenium을 공부하려고 한다. 아나콘다에는 selenium이 포함되어있지 않기 때문에 Anaconda Prompt에서 conda install selenium 명령어를 이용해 설치해준다. 혹시라도 아나콘다를 설치하지 않았다면 cmd에서 pip install selenium 명령어로 설치한다. Chrome Driver 설치하기 https://sites.google.com/a/chromium.org/chromedriver/downloads Downloads - ChromeDriver - WebDriver for Chrome WebDriver for Chrome sites.google..