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
因为我试过很多方式都无法选择要的字段
谢谢