Selenium使用入門 安裝使用

2021-08-13 08:26:01 字數 427 閱讀 9511

selenium使用入門——安裝使用

需要基本python 知識,如果沒有這塊知識,先去補習python知識。

pip3install selenium

pip3install chromedriver

注意,需要將其移動到path環境變數所在的路徑中。

然後執行如下**:

fromseleniumimportwebdriver

browser = webdriver.chrome()

browser.get('')

print(browser.page_source)

browser.close()

就可以列印taobao**的html內容。

selenium的入門使用

可以參考部落格 from selenium import webdriver selenium的webdriver類的功能 import time import os 0.建立乙個瀏覽器頁,使用驅動 driver webdriver.chrome executable path r c users ...

軟體測試 selenium安裝使用

安裝selenium不少人使用pip命令來安裝selenium,辛辛苦苦安裝完之後,還是不能使用。所以我們可以是直接使用編譯器,pycharm直接安裝selenium擴充套件包。file中點選settings 在settings中點選project interpreter,點選加號就可以安裝各種需要...

安裝selenium教程

1 安裝python 注意 安裝時選擇安裝介面的 add python 3.x to path 進行勾選,避免再次配置環境變數 安裝完成後通過windows命令提示符cmd輸入 python 檢視是否安裝成功,如下圖所示 如上所示 證明安裝成功 2 安裝pip pip是乙個安裝和管理python包的...