如何在python硒中获取href链接

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

我是硒的新手,我正在网站的网页抓取中,因为我想获取标记的所有href链接。

我使用了以下代码,但无法获取href链接。它显示javascript:作为输出。

driver.find_element_by_css_selector('div.clFx>a').get_attribute('href')

在其他代码中,此方法工作正常,但在此未显示任何内容,我还在要获取href链接的检查元素区域中附加了图像。

请在下面查看检查元素的图像。请帮助我,我在此代码中停留了2天。

我还检查了stackoverflow中的所有答案,并使用了相同的代码,但仍然无法获取。

<div class="clFx">
::before
<a class="userName name" href="https://resdex.naukri.com/v2/preview/preview?uniqId=6f44e0e0b95503a44378054b64bdb1cc580e0f001e115d110418475f5808004f130d020214495f5e0b544e170d6&amp;sid=3922138883&amp;paramString=2faf4d57a73f0d419d15309cbc9f5f67134f5108084a5746754e034a571b2513445055524d51250c4b0a1f57504f54030c6&amp;hfFlowName=search&amp;commentSearchType=comment-my,comment-others" target="_blank">Bhimanagoud Patil</a>
::after
</div>

上面的href链接我想得到。

enter image description here

python selenium selenium-webdriver xpath css-selectors
1个回答
© www.soinside.com 2019 - 2024. All rights reserved.