请不要在您以后的问题中将
HTML
代码粘贴为 IMAGE
,为了方便起见,请将 HTML
作为代码发布。
from bs4 import BeautifulSoup
html = """<div class="date">
<span title="Hi">Bye</span>
</div>"""
soup = BeautifulSoup(html, 'lxml')
print(soup.select_one('.date>span')['title'])
输出:
Hi
您必须使用 Selenium 中提供的
get_attribute
方法。
title_value = driver.find_element_by_xpath("//div[@class = 'date']/span[@title]").get_attribute('title')
print(title_value)