selenium基础自学七(获取超链接)

获取页面元素的href属性

一般一个元素会有多个属性,例如 class, id, name, text, href, vale等等,特别是超链接,进行获取和转移

 

import time
from selenium.webdriver.common.by import By
from selenium import webdriver
driver = webdriver.Chrome('D:\chromedriver\chromedriver.exe')
driver.maximize_window()
driver.implicitly_wait(6)#等待6秒,其实跟time.sleep(6)差不多
driver.get("http://itbbs.pconline.com.cn/dc/54123657.html")
time.sleep(1)
compare2=driver.find_elements_by_xpath("//*[@href]")#后期所有的href元素
for link in compare2:
	print(link.get_attribute('href'))#输出所有的连接
driver.quit()

 

你可能感兴趣的:(selneium基础自学)