driver.find_element查找并保存指定select下所有option的信息
时间: 2023-05-26 08:07:10 浏览: 357
基于selenium及python实现下拉选项定位select
可以通过以下代码实现查找并保存指定select下所有option的信息:
```python
# 找到select元素
select = driver.find_element_by_xpath('//select[@id="select_id"]')
# 找到所有option元素
options = select.find_elements_by_tag_name('option')
# 保存所有option的信息
option_texts = [option.text for option in options]
```
其中,`find_element_by_xpath()` 方法用于定位 select 元素,`find_elements_by_tag_name()` 方法用于定位所有 option 元素,`text` 属性用于获取 option 元素的文本信息。最终,所有 option 的文本信息将保存在 `option_texts` 列表中。
阅读全文