码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2015-04-26 15:08:13      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:

1     def get_selected_list_label(self, locator):
2         """Returns the visible label of the selected element from the select list identified by `locator`.
3 
4         Select list keywords work on both lists and combo boxes. Key attributes for
5         select lists are `id` and `name`. See `introduction` for details about
6         locating elements.
7         """
8         select = self._get_select_list(locator)
9         return select.first_selected_option.text

方法名:get_selected_list_label(self, locator)

公共方法 返回首个选中项的label值

接收参数:locator

第8行:使用_get_select_list(self, locator)方法根据传入的locator返回Select对象。

使用:

技术分享

返回结果:

1 INFO : ${label} = 无逾期

 

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

标签:

原文地址:http://www.cnblogs.com/loveok-56/p/4457701.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!