本文目標(biāo):
使用selenium3.0+python3操縱瀏覽器,打開百度網(wǎng)站。(相當(dāng)于selenium的hello world)
環(huán)境基礎(chǔ):python3已安裝,pycharm編輯器已安裝。
第一步:安裝selenium
打開cmd窗口,輸入pip install selenium
,然后回車。
第二步:安裝WebDriver
1)下載WebDriver
由于selenium是通過調(diào)用瀏覽器的給的接口來操縱瀏覽器,所以WebDriver不統(tǒng)一,需要根據(jù)自己的瀏覽器登錄相應(yīng)的地址,下載最新的WebDriver
Chrome:https://chromedriver.storage.googleapis.com/index.html
FireFox:https://github.com/mozilla/geckodriver/releases
Edge: https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/(注意:微軟官方已不對IE瀏覽器的webdriver進(jìn)行維護(hù))
Safari: 不用下載WebDriver,該瀏覽器已內(nèi)置接口。
我下載了Edge和Chrome的webdriver?;鸷南螺d地址太卡了,下載不下來,我自己用火狐也不多。
2)將WebDriver放在環(huán)境變量里
selenium能夠通過系統(tǒng)的path變量找到webdriver,因此需要將webdriver所在目錄添加到系統(tǒng)的path變量里。
右鍵點(diǎn)擊“此電腦”,然后選擇屬性,然后根據(jù)下圖將webdriver所在的目錄添加到Path變量里。
第三步:編寫代碼,操縱瀏覽器訪問百度網(wǎng)站并搜索
1)操縱谷歌瀏覽器訪問百度
from selenium.webdriver import Chrome
from time import sleep
with Chrome() as driver:
driver.get('http://www.baidu.com')
sleep(10)
2)操縱Edge訪問百度
from selenium.webdriver import Edge
from time import sleep
with Edge(executable_path=r'C:\WebDriver\msedgedriver.exe') as driver:
driver.get('http://www.baidu.com')
sleep(10)
Edge()函數(shù)里指定executable_path的值,是因?yàn)閟elenium仍然認(rèn)為Edge的WebDriver的名稱是MicrosoftWebDriver.exe,然而最新的Edge的WebDriver的名稱是msedgedriver.exe。因此,需要手動指定Edge WebDriver的路徑,否則,selenium會報錯:selenium.common.exceptions.WebDriverException: Message: ‘MicrosoftWebDriver.exe' executable needs to be in PATH.
到此這篇關(guān)于selenium3.0+python之環(huán)境搭建的方法步驟的文章就介紹到這了,更多相關(guān)python selenium3.0環(huán)境搭建 內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
您可能感興趣的文章:- Python selenium環(huán)境搭建實(shí)現(xiàn)過程解析
- Python+Selenium實(shí)現(xiàn)自動化的環(huán)境搭建的步驟(圖文)
- selenium+python自動化測試環(huán)境搭建步驟
- selenium+python自動化測試之環(huán)境搭建
- selenium3+python3環(huán)境搭建教程圖解
- Python + selenium自動化環(huán)境搭建的完整步驟
- python+selenium開發(fā)環(huán)境搭建圖文教程