博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Selenium2Library系列 keywords 之 _SelectElementKeywords 之 get_selected_list_labels(self, locator)...
阅读量:6314 次
发布时间:2019-06-22

本文共 956 字,大约阅读时间需要 3 分钟。

1     def get_selected_list_labels(self, locator): 2         """Returns the visible labels of selected elements (as a list) from the select list identified by `locator`. 3  4         Fails if there is no selection. 5  6         Select list keywords work on both lists and combo boxes. Key attributes for 7         select lists are `id` and `name`. See `introduction` for details about 8         locating elements. 9         """10         select, options = self._get_select_list_options_selected(locator)11         if len(options) == 0:12             raise ValueError("Select list with locator '%s' does not have any selected values")13         return self._get_labels_for_options(options)

方法名:get_selected_list_labels(self, locator)

相似方法:

公共方法 返回选中项的labels数组

接收参数:locator

10行:使用方法返回Select 元素对象和选中options数组

13行:使用 方法返回options的labels数组

使用:

输出结果:

INFO : @{labels} = [ 无逾期 | 无记录(征信空白) | 贷款或贷记卡当前逾期金额>=300元 ]

 

转载于:https://www.cnblogs.com/loveok-56/p/4457806.html

你可能感兴趣的文章
Gorun8电子商城
查看>>
在之前链表的基础上改良的链表
查看>>
android编译系统makefile(Android.mk)写法
查看>>
MD5源代码C++
查看>>
Eclipse 添加 Ibator
查看>>
Linux中变量$#,$@,$0,$1,$2,$*,$$,$?的含义
查看>>
Python编程语言
查看>>
十四、转到 linux
查看>>
Got error 241 'Invalid schema
查看>>
ReferenceError: event is not defined
查看>>
男人要内在美,更要外在美
查看>>
为什么要跟别人比?
查看>>
app启动白屏
查看>>
Oracle 提高查询性能(基础)
查看>>
学习知识应该像织网一样去学习——“网状学习法”
查看>>
Hadoop集群完全分布式安装
查看>>
QString,char,string之间赋值
查看>>
我的友情链接
查看>>
Nginx+mysql+php-fpm负载均衡配置实例
查看>>
shell脚本操作mysql数据库 (部份参考)
查看>>