标签:
1 def _get_select_list(self, locator): 2 el = self._element_find(locator, True, True, ‘select‘) 3 return Select(el)
私有方法 根据传入的locator返回Select类型的元素。
有关 self._element_find(locator, True, True, ‘select‘) 详细信息请看:
Selenium2Library系列 keywords 之 _SelectElementKeywords 之_get_select_list(self, locator)
标签:
原文地址:http://www.cnblogs.com/loveok-56/p/4457494.html