Python爬虫——selenium_访问元素信息

from selenium import webdriver

# 创建浏览器对象
path = 'files/chromedriver.exe'
browser = webdriver.Chrome(path)

# 访问地址
url = 'https://www.baidu.com'
browser.get(url)

input = browser.find_element_by_id('su')
  1. 获取元素属性
.get_attribute('class')
print(input.get_attribute('class'))
  1. 获取标签名
.tag_name
print(input.tag_name)
  1. 获取元素文本
.text
a = browser.find_element_by_link_text('hao123')
print(a.text)

你可能感兴趣的:(Python爬虫,python,爬虫,selenium)