Selenium2Library系列 keywords 之 _SelectElementKeywords 之 get_list_items(self, locator)

     def get_list_items(self, locator):
"""Returns the values in the select list identified by `locator`. Select list keywords work on both lists and combo boxes. Key attributes for
select lists are `id` and `name`. See `introduction` for details about
locating elements.
"""
select, options = self._get_select_list_options(locator)
return self._get_labels_for_options(options)

方法名:get_list_items(self, locator)

公共方法 返回options的labels数组

接收参数:locator

第8行:使用_get_select_list_options(self, select_list_or_locator)方法得到Select对象和options

第9行:使用_get_labels_for_options(self, options) 方法返回options的labels数组

返回结果:

 INFO : @{items} = [ 无逾期 | 无记录(征信空白) | 贷款或贷记卡当前逾期金额>=300元 | 信用报告出现“止付”,“冻结”,“呆账”或者Z,D,G的账户状态 | 贷记卡或贷款账户近6个月出现2及以上 | 贷记卡或贷款账户近12个月出现3及以上 | 贷记卡或贷款账户近24个月出现4及以上 | 其他 ]
上一篇:1449 - The user specified as a definer ('test'@'%') does not exist


下一篇:探索ASP.NET MVC5系列之~~~3.视图篇(下)---包含常用表单和暴力解猜防御