打印div内容python

问题描述 投票:0回答:2

如何打印“2020 年 2 月 8 日星期六 07:46:40 PM CDT”? 我用谷歌搜索了很多并且尝试了很多次。有人可以帮助我吗?

python selenium-webdriver web-scraping beautifulsoup
2个回答
1
投票

请不要在您以后的问题中将

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

0
投票

您必须使用 Selenium 中提供的

get_attribute
方法。

title_value = driver.find_element_by_xpath("//div[@class = 'date']/span[@title]").get_attribute('title')
print(title_value)
© www.soinside.com 2019 - 2024. All rights reserved.