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

Selenium2Library系列 keywords 之 _SelectElementKeywords 之 unselect_from_list_by_index(self, locator, *indexes)

时间:2015-04-29 00:29:15      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:

 1     def unselect_from_list_by_index(self, locator, *indexes):
 2         """Unselects `*indexes` 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 indexes:
 9             raise ValueError("No index given.")
10 
11         items_str = "index(es) ‘%s‘" % ", ".join(indexes)
12         self._info("Unselecting %s from list ‘%s‘." % (items_str, locator))
13 
14         select = self._get_select_list(locator)
15         if not select.is_multiple:
16             raise RuntimeError("Keyword ‘Unselect from list‘ works only for multiselect lists.")
17 
18         for index in indexes:
19             select.deselect_by_index(int(index))

方法名:unselect_from_list_by_index(self, locator, *indexes)

相似方法:

公共方法 移除所给indexes的选中状态

接收参数:locator,indexes

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

Selenium2Library系列 keywords 之 _SelectElementKeywords 之 unselect_from_list_by_index(self, locator, *indexes)

标签:

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

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