如何提取文本“152”使用 Selenium 从文本节点

发布于 2025-01-18 14:25:52 字数 267 浏览 0 评论 0原文

“在此处输入图像说明”

我需要为数字152提取xpath。我创建的xpath是我创建的xpath提取文本152之后的文本是“测试”,但不包括数字152。我需要获得此计数。

我正在使用以下XPath:

//div\[@class='filter_filter__5H_fi'\]/h1

不确定如何获得此功能。

enter image description here

I need to extract the xpath for the number 152. The xpath that I created extracts the text after 152 which is "Test" but excludes the number 152. I need to get this count.

I am using below xpath :

//div\[@class='filter_filter__5H_fi'\]/h1

Not sure how to get this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

独自唱情﹋歌 2025-01-25 14:25:52

根据 HTML:

HTML

文本 152 和 < em>测试位于各自的文本节点内。


解决方案

要检索文本152,您可以使用以下任一方法定位器策略

  • 使用JavacssSelectorfirstChild

    WebElement = driver.findElement(By.cssSelector("div.filter_filter__5H_fi > h1"));
    System.out.println(((JavaScriptExecutor)driver).executeScript("返回参数[0].firstChild.textContent;", element).toString());
    
  • 使用PythonxpathfirstChild

    parent_element = driver.find_element(By.XPATH, "//div[@class='filter_filter__5H_fi']/h1")
    print(driver.execute_script('返回参数[0].firstChild.textContent;',parent_element).strip())
    

As per the HTML:

HTML

both the text 152 and Test are within their respective text nodes.


Solution

To retrive the text 152 you can use either of the following locator strategies:

  • Using Java, cssSelector and firstChild:

    WebElement = driver.findElement(By.cssSelector("div.filter_filter__5H_fi > h1"));
    System.out.println(((JavaScriptExecutor)driver).executeScript("return arguments[0].firstChild.textContent;", element).toString());
    
  • Using Python, xpath and firstChild:

    parent_element = driver.find_element(By.XPATH, "//div[@class='filter_filter__5H_fi']/h1")
    print(driver.execute_script('return arguments[0].firstChild.textContent;', parent_element).strip())
    
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文