This is what I figured out. But I’m not sure if pre is right or not. I don’t
know python.
#get selectselect1 = Select(driver.find_element_by_xpath('//select[@name="sido"]'))#get all options from selectoptions1 = select1.optionsfor opt1 is options1: #select the option which has the value of opt1 select1.select_by_value(opt1.get_attribute("value")) time.sleep(5) select2 = Select(driver.find_element_by_xpath('//select[@name="gugu"]')) options2 = select2.options for opt2 in options2: select1.select_by_value(opt2.get_attribute("value")) time.sleep(4)


