python自動化:下拉框定位方法之select標(biāo)簽 style="display: none;"
報錯
selenium.common.exceptions.ElementNotVisibleException: Message: element not visible: Element is not currently visible and may not be manipulated
界面源碼:(禪道為例)
排查:
1)因為是隱藏的,需要操作其可見才可定位
2)若還是無法定位台舱,請查看前后是否有sleep等待;xpath定位效率會低點。
源碼:
'''
select標(biāo)簽定位
使用index
若是操作隱藏的元素的話:style="display: none;"金蜀;【若不是隱藏的的話不需要js】
js = 'document.querySelectorAll("select")[0].style.display="block";'
driver.execute_script(js)
document.querySelectorAll("select") 選擇所有的select。
[0] 指定這一組標(biāo)簽里的第幾個狈醉。
style.display="block"; 修改樣式的display="block" ,表示可見廉油。
執(zhí)行完這句js代碼后,就可以正常操作下拉框了苗傅。
'''
index定位;導(dǎo)入:from selenium.webdriver.support.select import Select
js = 'document.querySelectorAll("select")[2].style.display="block";'#[2]:從零開始查第幾個就寫幾
driver.execute_script(js)
project = driver.find_element_by_xpath("http://*[@id='project']")
Select(project).select_by_index(1) #從零查第幾個option