https://imgur.com/a/ALoXGnR // 像是這樣下拉選單
下面程式碼我想選擇第7個頻道
select = Select(driver.find_element_by_name("channel_24"))
select.select_by_visible_text("7")
for op in select.options:
print(op.text)
我程式碼印出來的下單選單都是空的~
錯誤:
selenium.common.exceptions.ElementNotVisibleException: Message: element not
visible: Element is not currently visible and may not be manipulated
下面網址是我要用Select 讀取的 html 跟 下面是完整的錯誤訊息
https://gist.github.com/shihyu/d41512962cb35dea2dd8c369bdb0154b
因為我試過很多方式都無法選擇要的欄位
謝謝