gpt4 book ai didi

python - 使用 Selenium 从元素中提取 'href'

转载 作者:行者123 更新时间:2023-12-01 05:51:41 29 4
gpt4 key购买 nike

这是我当前的 XPath:

//table//tr/td/div/div[1]/div/a/@href

它匹配我正在查看的页面上的十个网址。它具有以下形式的十个匹配 jobs/720800-Associate-Partner-Investment-Consulting-Vancouver-Job-ID-39708.aspx

我正在尝试使用selenium.get_text()来提取@href字符串;但是,我的电话正在拉空白(注意:没有失败,只是拉空白)。我能够成功地拉动同一页面上其他元素的字符串。

我进行了搜索,但找不到任何解决方案来解决我的问题 - 有人能给我一些建议吗?

最佳答案

如果您使用的是 python selenium,这可能有点晚了(根据你的标签)你可以这样做(如v2.44.0):

from selenium import webdriver
# set the driver
driver = webdriver.Firefox()
# get the element
elem = driver.find_element_by_xpath('//table//tr/td/div/div[1]/div/a')
# get the attribute value
link = elem.get_attribute('href')

关于python - 使用 Selenium 从元素中提取 'href',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14014778/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com