如果需要定位一组对象,需要使用以下方法,会返回一个list
element = driver.find_element_by_xpath("//select[@name=‘name‘]")
all_options = element.find_elements_by_tag_name("option")
for option in all_options:
print("Value is: %s" % option.get_attribute("value"))
option.click()
原文地址:http://www.cnblogs.com/hugh007/p/3853595.html