① python 中selenium的問題
右鍵復制xpath
然後調用
from selenium import webdriver
driver = webdriver.Chrome()
driver.get("你的網址")
text = driver.find_element_by_xpath('your xpath')
print(text)
selenium的安裝參考下邊的鏈接
網頁鏈接
② 求解pythonselenium函數在定位到一個元素後如何獲取這個元素的全部屬性值
先獲取元素的text內容,後引用正則表達式匹配出所有attribute和value。注意text中屬性值都是attribute=value這種形式。