selenium的入門使用

2022-03-14 04:22:39 字數 846 閱讀 3644

可以參考部落格:

from selenium import webdriver #selenium的webdriver類的功能

import time

import os

#0.建立乙個瀏覽器頁,使用驅動

driver=webdriver.chrome(executable_path=r'c:\users\12495\desktop\chromedriver.exe'

)#1.用該瀏覽器開啟頁面

driver.get(r''

)#2.向對應id的**傳送資訊

driver.find_element_by_id(

"kw"

).send_keys(

"python牛逼"

)#3.向對應id點選

driver.find_element_by_id(

"su"

).click(

)#4.獲取頁面原始碼

htmlstring=driver.page_source

#5.獲取當前瀏覽器的cookies

cookieslist=driver.get_cookies(

)# print(cookieslist)

#6.把cookies的name和value提取出來,作為鍵值對

cookies=

for i in cookieslist:

cookies[i[

"name"]]

=i["value"

]print

(cookies)

# time.sleep(3)

# driver.close()

Selenium使用入門 安裝使用

selenium使用入門 安裝使用 需要基本python 知識,如果沒有這塊知識,先去補習python知識。pip3install selenium pip3install chromedriver 注意,需要將其移動到path環境變數所在的路徑中。然後執行如下 fromseleniumimport...

Selenium入門18 斷言

自動化測試需對比實際結果與預期結果,給出測試結論。1 條件判斷 if else.2 assert coding utf 8 斷言 from selenium import webdriver dr webdriver.firefox dr.get if判斷if indr.title print te...

Selenium的簡單使用

selenium的使用對於新手來說十分友好,因為他避開了如今網路中的非同步載入抓取的困擾,使得我們大部分的時間可以用於提取資訊和儲存中,下面就簡單的列一些使用的 希望給同樣初學的你有一定的參考價值。usr bin env python coding utf 8 author lix from sel...