您的位置:首页 > 产品设计 > UI/UE

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

2015-04-26 15:25 405 查看
def get_selected_list_value(self, locator):
"""Returns the value of the selected element from the select list identified by `locator`.

Return value is read from `value` attribute of the selected element.

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 = self._get_select_list(locator)
return select.first_selected_option.get_attribute('value')


方法名:get_selected_list_value(self, locator)

相似方法:

公共方法 返回首个选中项的value数组

接收参数:locator

10行:使用_get_select_list(self, locator)方法,返回Select对象

13行:返回首个选中项的value数组

使用:



输出结果:

INFO : ${value} = 0
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐