1 def get_selected_list_values(self, locator): 2 """Returns the values of selected elements (as a list) from the select list identified b...
分类:
其他好文 时间:
2015-04-26 16:27:11
阅读次数:
114
1 def get_selected_list_value(self, locator): 2 """Returns the value of the selected element from the select list identified by `locator`...
分类:
其他好文 时间:
2015-04-26 16:26:22
阅读次数:
85
1 def _get_select_list_options_selected(self, locator):2 select = self._get_select_list(locator)3 # TODO: Handle possible exceptio...
分类:
其他好文 时间:
2015-04-26 16:25:11
阅读次数:
71
1 def get_selected_list_label(self, locator):2 """Returns the visible label of the selected element from the select list identified by `lo...
分类:
其他好文 时间:
2015-04-26 15:08:13
阅读次数:
148
1 def get_list_items(self, locator):2 """Returns the values in the select list identified by `locator`.3 4 Select list keywords wo...
分类:
其他好文 时间:
2015-04-26 15:08:07
阅读次数:
130
1 def _get_labels_for_options(self, options):2 labels = []3 for option in options:4 labels.append(option.text)5 ...
分类:
其他好文 时间:
2015-04-26 13:39:42
阅读次数:
92
# 公有方法(1)get_list_items(self, locator) 返回labels集合_get_select_list_options(self, select_list_or_locator) 返回select, select.options _get_labels_for_optio...
分类:
其他好文 时间:
2015-04-26 12:23:37
阅读次数:
138
1 def _get_select_list(self, locator):2 el = self._element_find(locator, True, True, 'select')3 return Select(el)私有方法根据传入的locator返...
分类:
其他好文 时间:
2015-04-26 12:16:50
阅读次数:
109
1 def _get_select_list_options(self, select_list_or_locator):2 if isinstance(select_list_or_locator, Select):3 select = select...
分类:
其他好文 时间:
2015-04-26 12:14:25
阅读次数:
115
functools 模块中有三个主要的函数 partial(), update_wrapper() 和 wraps()。1、partial(func[,args][, *keywords]) functools.partial 通过包装手法,允许我们 "重新定义" 函数签名。用一些默认参数包装一个....
分类:
编程语言 时间:
2015-04-26 10:50:43
阅读次数:
289