gpt4 book ai didi

python - 在 Selenium python 中通过 xpath 模式查找元素

转载 作者:太空宇宙 更新时间:2023-11-04 08:48:09 24 4
gpt4 key购买 nike

我正在使用 selenium python 和 lettuce 来测试 django 应用程序。

在以下模式中有许多元素具有 xpath,我不知道文档中存在多少这些元素。

.//*[@id='accordion-note-1']
.//*[@id='accordion-note-2']
.//*[@id='accordion-note-3']
.//*[@id='accordion-note-4']

有没有办法在 driver.find_elements_by_xpath 中使用模式?
基本上我的目的是让所有项目都具有这种 xpath 模式。

最佳答案

不确定这是否有效,但您可以尝试使用以下 xpath:

.//*[starts-with(@id, 'accordion-note')]

这是链接 http://www.zvon.org/xxl/XSLTreference/Output/function_starts-with.html

你也可以在这里使用contain

.//*[contains(@id, 'accordion-note')]     

关于python - 在 Selenium python 中通过 xpath 模式查找元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38095177/

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