selenium获取a标签下的href的值
时间: 2024-03-03 18:48:16 浏览: 208
Selenium切换窗口句柄及调用Chrome浏览器.docx
可以使用以下代码来获取a标签下的href值:
```python
from selenium import webdriver
# 创建浏览器对象
browser = webdriver.Chrome()
# 打开网页
browser.get("https://www.example.com")
# 获取a标签
a_tag = browser.find_element_by_tag_name("a")
# 获取a标签的href属性值
href_value = a_tag.get_attribute("href")
# 输出href属性值
print(href_value)
# 关闭浏览器
browser.quit()
```
其中,`get_attribute()` 方法可以用来获取元素的属性值。在这里,我们使用 `get_attribute("href")` 获取a标签的href属性值。
阅读全文