728x90
1. 파이썬 2.x 또는 3.x 설치
https://www.python.org/downloads/
2. 셀레늄 설치
파이썬을 실행한 후 아래와 같이 셀레늄 설치
(설치버전 또는 설치경로에 따라 다를 수 있음)
C:\Python34\Scripts\pip.exe install selenium
3. 테스팅 스크립트 작성
functional_test.pyfrom selenium import webdriver
browser = webdriver.Firefox()
browser.get('http://localhost:8000')
assert 'Django' in browser.title
아래와 같이 소문자로 입력시 TypeError 를 발생시키게 되므로 주의한다.
browser = webdriver.firefox()
C:\Users\fukaeri>python3 functional_test.py
Traceback (most recent call last):
File "functional_test.py", line 3, in <module>
browser = webdriver.firefox()
TypeError: 'module' object is not callable
정상적으로 실행된 경우 파이어폭스 브라우저를 통해 해당 주소를 오픈하게 된다.
728x90
'프로그래밍 Programming' 카테고리의 다른 글
아나콘다 다중 환경구성 _ 파이썬 3.5 환경 구성하기 Create a Python 3.5 environment (0) | 2015.12.01 |
---|---|
셀레늄(selenium)을 이용한 네이버 자동검색 및 결과 클릭 (0) | 2015.11.28 |
object has no attribute 'title' and getattr(object, name[, default]) (0) | 2015.11.20 |
feedparser 5.2.1 (universal feed parser) (0) | 2015.11.14 |
render_to, render_to_response (0) | 2015.10.26 |