我在使用webdriver選擇它後取消選擇所選選項時出現問題。我不斷收到錯誤加薪NotImplementedError(「你只能取消的多選選項」) NotImplementedError:您只能取消選項的多選取消選擇單選項下拉列表python webdriver
選擇的下拉菜單項如何才能未被選擇?我的代碼如下。
HTML代碼:
<option selected="selected" value=""></option>
<option value="Item 1">Item 1</option>
<option value="Item 2 (1)">Item 2</option>
<option value="Item 3">Item 3</option>
的Python的webdriver:
options = select.find_elements_by_tag_name("option")
for x in range(1,len(options)):
option = options[x]
options_list.append(option.get_attribute("value"))
item_selection = Select(select)
item_selection.select_by_visible_text("Item 1")
time.sleep()
item_selection.deselect_by_visible_text("Item 1")
好的謝謝。你的建議似乎有效。 – user674864