如何使用Selenium(Python)选择下拉菜单选项值
<select id="fruits01" class="select" name="fruits"> <option value="0">Choose your fruits:</option> <option value="1">Banana</option> <option value="2">Mango</option></select>
1)
inputElementFruits = driver.find_element_by_xpath("//select[id='fruits']").click()
2)Mango
.
inputElementFruits.send_keys(...)
潇潇雨雨
相关分类