我需要单击下拉列表并单击其中的隐藏元素. html将由javascript生成,我不会知道id或类名,但我知道它会有一个短语.我可以通过正则表达式查找和元素然后用硒点击它吗?
最佳答案
您不能简单地使用内置的selenium webdriver定位器进行基于正则表达式的搜索,但是您可以使用多种方法来帮助您:
原文链接:https://www.f2er.com/html/426580.html> contains()
和starts-with()
XPath函数:
//div[contains(.,"Desired text")]
//div[starts-with(.,"Desired text")]
> preceding
,preceding-sibling
,following
和following-sibling
轴如果您知道新生成的元素块的相对位置,则可能会对您有所帮助
还有CSS选择器用于元素属性的部分匹配:
a[href*=desiredSubstring] # contains
a[href^=desiredSubstring] # starts-with
a[href$=desiredSubstring] # ends-with
而且你总能找到比需要更多的元素,稍后用Python过滤掉它们,例如:
import re
pattern = re.compile(r"^Some \w+ text.$")
elements = driver.find_elements_by_css_selector("div.some_class")
for element in elements:
match = pattern.match(element.text)
if match:
print(element.text)