selenium+python自動化測試(一)環境
阿新 • • 發佈:2017-12-18
get gre gpo exe ren 瀏覽器版本 art lap close
python裝的是3.5,chrome瀏覽器版本是17年初的
1.chromedriver
在http://chromedriver.storage.googleapis.com/index.html?path=2.30/下載個chromedriver,解壓後的exe粘貼到chrome安裝路徑下,一般在Program Files (x86)\Google\Chrome\Application
2.安裝selenium庫
打開控制臺,輸入命令: pip install selenium
如果沒安裝pip,那麽請搜索關鍵詞:python pip安裝
3.來個小demo
可以下個個pycharm社區版本來用,寫代碼有智能提示,非常方便
1 # coding = utf-8 2 3 from selenium import webdriver 4 chromedriver = "C:\Program Files (x86)\Google\Chrome\Application\chromedriver" 5 browser = webdriver.Chrome(chromedriver) 6 browser.get(‘http:\\www.baidu.com‘) 7 browser.find_element_by_id(‘kw‘).send_keys(‘selenium‘) 8 browser.find_element_by_id(‘View Codesu‘).click() 9 browser.quit()
程序執行很慢,但是完了會關閉,所以可以把最後一行註釋掉看過程:#
browser.quit()
參考例子:
1.http://blog.csdn.net/yangyangrenren/article/details/54137041
2.https://www.cnblogs.com/buchiany/p/6379305.html
selenium+python自動化測試(一)環境