gpt4 book ai didi

python - 如何检查html文档中是否存在指定xpath的元素?

转载 作者:行者123 更新时间:2023-12-03 00:59:35 24 4
gpt4 key购买 nike

我正在 python 中使用 selenium,想知道 html 页面中是否存在具有指定 xpath 的元素。我该怎么做?

示例输入:

chek_if_exists("xpath")

Output: True or False

最佳答案

您必须编写一个函数来检查该元素是否存在。如果元素存在,该方法将返回 True;如果找不到该元素,该方法将返回 False,并抛出异常。

def hasXpath(xpath):
try:
self.browser.find_element_by_xpath(xpath)
return True
except:
return False

关于python - 如何检查html文档中是否存在指定xpath的元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30931802/

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