<a href="문서 위치">~</a>
<img src="그림 위치">
Selenium : 웹 브라우저를 컨트롤하여 웹 UI를 Automation하는 도구 중 하나이다.
먼저 Pycharm에 Selenium을 설치해보자.
pip install selenium
Project안에 하위 디렉토리를 생성하여 그 안에 chromedriver를 설치하였다.
# selenium 모듈에 있는 webdriver 함수 사용
from selenium import webdriver
driver_path = 'resources/chromedriver' # chrome driver 상대 경로
url = 'https://play.google.com/store/apps/top/category/GAME' # 접속할 url 주소
browser = webdriver.Chrome(executable_path=driver_path) # Chrome driver
browser.get(url) # browser 객체에 url 주소 get
browser.quit()
from selenium import webdriver
driver_path = 'resources/chromedriver'
urls = [
"https://play.google.com/store/apps/category/GAME_EDUCATIONAL",
"https://play.google.com/store/apps/category/GAME_WORD",
]
browser = webdriver.Chrome(executable_path=driver_path) # Chrome driver
for url in urls:
browser.get(url)
browser.quit()
for문을 이용하여 urls 안에 있는 주소로 반복 접속한다.
pip install beautifulsoup4
from bs4 import BeautifulSoup
html_doc = """
<html><head><title>The Dormouse's story</title></head>
<body>
<p class="title"><b>The Dormouse's story</b></p>
<p class="story">Once upon a time there were three little sisters; and their names were
<a href="http://example.com/elsie" class="sister" id="link1">Elsie</a>,
<a href="http://example.com/lacie" class="sister" id="link2">Lacie</a> and
<a href="http://example.com/tillie" class="sister" id="link3">Tillie</a>;
and they lived at the bottom of a well.</p>
<p class="story">...</p>
"""
# html_doc의 내용을 html 코드로 변환하고 Python의 객체 구조로 변환
soup = BeautifulSoup(html_doc, 'html.parser')
print(soup.prettify()) # html 코드를 보기 편하게 출력
from selenium import webdriver
from bs4 import BeautifulSoup
driver_path = 'resources/chromedriver'
url = 'https://play.google.com/store/apps/top/category/GAME'
browser = webdriver.Chrome(executable_path=driver_path)
browser.get(url) # 처음 chrome브라우저를 통해 url 주소로 접속
page = browser.page_source # page 변수에 url 주소 저장
browser.quit()
soup = BeautifulSoup(page, "html.parser")
print(soup.prettify())
실행 결과