Selenium2Library系列 keywords 之 _SelectElementKeywords 之_get_select_list(self, locator)
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') 详细信息请看: