硒蟒按类和标题获取属性



我已经在谷歌上搜索了这个,但无法得到答案,我试图在标题中提取"90,856"。它的价值随时间变化:

<div class="card hreddeep">
<div class="card-header hbuilt">
<div class="card-body">
<div class="row">
<div class="col-6 text-left">
<div class="h6 text-uppercase param-title">Search<br>Volume</div>
<div class="h4 param-content" title="90,856">

我的代码是:

find_element_by_xpath("//div[@class='h4-param-content']").get_attribute("title")

感谢一些帮助。谢谢

您的 XPath 包含一个拼写错误(根据您的示例数据(:h4-param而不是h4 param...

首先,测试:

find_element_by_xpath("//div[@class='h4 param-content']").get_attribute("title")

如果不起作用,请尝试使用预期条件。

添加以下导入:

from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC

法典:

wait = WebDriverWait(driver, 10)
output = wait.until(EC.visibility_of_element_located((By.XPATH, "//div[@class='h4 param-content']"))).get_attribute("title")
print(output)

相关内容

  • 没有找到相关文章

最新更新