如何使用 Selenium 和 Python 从文本节点中检索部分文本

How to retrieve partial text from a text node using Selenium and Python(如何使用 Selenium 和 Python 从文本节点中检索部分文本)
本文介绍了如何使用 Selenium 和 Python 从文本节点中检索部分文本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我只想获取文本..."而不使用 .split() 或索引切片

I want to get only " text ... " not using .split() or index slicing

HTML:

<a class="call_recipe" href="/recipes/2913">
      " text ... "
      <strong> something~ </strong>
    </a>

HTML 快照:

推荐答案

要打印 text ... 你必须诱导 WebDriverWait 用于 visibility_of_element_located() 并且您可以使用以下任一 定位器策略:

To print text ... you have to induce WebDriverWait for the visibility_of_element_located() and you can use either of the following Locator Strategies:

  • 使用 CSS_SELECTORchildNodesstrip():

print(driver.execute_script('return arguments[0].firstChild.textContent;', WebDriverWait(driver, 20).until(EC.visibility_of_element_located((By.CSS_SELECTOR, "a.call_recipe[href^='/recipes']")))).strip())

  • 使用 XPATHget_attribute()splitlines():

    print(WebDriverWait(driver, 20).until(EC.visibility_of_element_located((By.XPATH, "//a[@class='call_recipe' and starts-with(@href, '/recipes')]"))).get_attribute("innerHTML").splitlines()[1])
    

  • 注意:您必须添加以下导入:

  • Note : You have to add the following imports :

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

  • 您可以在以下位置找到一些相关的详细讨论:

    You can find a couple of relevant detailed discussions in:

    • 如何获取特定文本属于 div 类
    • 如何使用 Selenium 和 Python 从由空格分隔的文本节点获取文本

    这篇关于如何使用 Selenium 和 Python 从文本节点中检索部分文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

    本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

    相关文档推荐

    python count duplicate in list(python在列表中计数重复)
    drop_duplicates not working in pandas?(drop_duplicates 在 pandas 中不起作用?)
    Get unique items from list of lists?(从列表列表中获取唯一项目?)
    How to install python package with a different name using PIP(如何使用 PIP 安装具有不同名称的 python 包)
    How to quot;select distinctquot; across multiple data frame columns in pandas?(如何“选择不同的?跨越 pandas 中的多个数据框列?)
    Intersection of two lists, keeping duplicates in the first list(两个列表的交集,在第一个列表中保留重复项)