最新版Selenium中find_element_by_link_text 应该怎么写
时间: 2023-09-20 09:08:36 浏览: 396
Python Selenium XPath根据文本内容查找元素的方法
在最新版的Selenium中,可以使用`find_element(By.LINK_TEXT, link_text)`方法来定位一个链接。例如,如果要找到文本为"Click here"的链接,可以使用以下代码:
```python
from selenium.webdriver.common.by import By
link_text = "Click here"
element = driver.find_element(By.LINK_TEXT, link_text)
```
其中,`driver`是已经初始化好的WebDriver对象。如果需要查找多个链接,可以使用`find_elements`方法。
阅读全文