首页 > 其他 > 详细

Selenium2Library系列 keywords 之 _SelectElementKeywords 之 select_from_list_by_label(self, locator, *labels)

时间:2015-04-29 00:31:20      阅读:475      评论:0      收藏:0      [点我收藏+]
 1     def select_from_list_by_label(self, locator, *labels):
 2         """Selects `*labels` from 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         if not labels:
 9             raise ValueError("No value given.")
10         items_str = "label(s) ‘%s‘" % ", ".join(labels)
11         self._info("Selecting %s from list ‘%s‘." % (items_str, locator))
12 
13         select = self._get_select_list(locator)
14         for label in labels:
15             select.select_by_visible_text(label)

方法名:select_from_list_by_label(self, locator, *values)

相似方法:

公共方法 选中所有labels项

接收参数:locator,*labels

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

Selenium2Library系列 keywords 之 _SelectElementKeywords 之 select_from_list_by_label(self, locator, *labels)

原文:http://www.cnblogs.com/loveok-56/p/4464289.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!