selenium chrome driver获取span元素的文本内容

selenium chrome driver获取span元素的文本内容,第1张

项目场景:

使用selenium chrome driver爬取敦煌网www.dhgate.com,想要获取店铺的地址和注册时间。


问题描述

使用find_element_by_class_name().text后发现不能获取span元素的文本内容,html如下:

<div class="sellertime" id="timeWrap">
	<p>
		<span class="fweight">Locationspan> <span>Jiangsu, China (Mainland)<br>04:55 PM Sat Apr 23span><span>Member
                                    Aug 2012span>
	p>
div>

解决方案:

使用get_attribute(‘innerHTML’)解决问题

location = driver.find_element_by_xpath('//*[@id="timeWrap"]/p/span[2]')
location = location.get_attribute('innerHTML')
location = re.findall(r"(.+)
"
, location)[0]

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/732486.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-27
下一篇 2022-04-27

发表评论

登录后才能评论

评论列表(0条)

保存