这似乎不起作用:
select_input = self.ff.find_element_by_name(select_name)
select_input.select_by_value(option_val)
但似乎select_by_value
将是最明显的选择。
答案 0 :(得分:0)
你必须找到合适的选项元素.click()
:
select_input = self.ff.find_element_by_name(select_name)
option = select_input.find_element_by_xpath("option[value=%s]" % option_val)
option.click()