AttributeError: Neither GUI element (wrapper) nor wrapper method 'get_slection' were found
时间: 2024-03-12 22:50:09 浏览: 293
【Python】AttributeError: ‘AutoSchema’ object has no attribute ‘get_link’
5星 · 资源好评率100%
非常抱歉,我的之前的回答中有误,`get_slection()` 方法是 pywinauto 中 ComboBox 控件的方法,而不是 ComboBoxWrapper 控件的方法。正确的方法应该是 `get_value()`。因此,你可以使用如下代码来获取当前选中的选项:
```python
selected_option = combobox_ctrl.get_value()
```
如果你想得到下拉框中所有选项的列表,可以使用如下代码:
```python
all_options = combobox_ctrl.get_list_contents()
```
希望这次回答能够帮到你。如果你还有其他问题,请随时提出,我会尽力回答。
阅读全文