我需要单击下拉列表并单击其中的隐藏元素.html将由javascript生成,我不会知道id或类名,但我知道它会有一个短语.我可以通过正则表达式查找和元素然后用硒点击它吗?
您不能简单地使用内置的selenium webdriver定位器进行基于正则表达式的搜索,但是您可以使用多种方法来帮助您:
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)