0

这似乎不起作用:

select_input = self.ff.find_element_by_name(select_name)
select_input.select_by_value(option_val)

但这似乎select_by_value是最明显的选择。

4

1 回答 1

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()
于 2012-12-28T21:18:59.337 回答