本文介紹了如何使用 unselectable=“on"選擇劍道下拉元素使用 Selenium 和 Python 的屬性的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
無法使用以下代碼選擇劍道下拉菜單.可以訪問該站點以檢查代碼.
<span unselectable="on" class="k-dropdown-wrap k-state-default"><span unselectable="on" class="k-input">Chang</span><span unselectable="on" class="k-select" aria-label="select"><span class="k-icon ki-arrow-60-down"></span></span></span>代碼:從硒導入網絡驅動程序從 selenium.webdriver.common.action_chains 導入 ActionChains從 selenium.webdriver.support.select 導入選擇從 selenium.webdriver.common.keys 導入密鑰進口時間driver = webdriver.Chrome('./chromedriver')driver.get("https://demos.telerik.com/kendo-ui/dropdownlist/remotedatasource")select = driver.find_element_by_xpath('//*[@id="example"]/div/span/span/span[1]')[0]select.SelectByValue("Chang");打印('成功')
解決方案
使用
Unable to select the kendo dropdown using below code. The site can be reachable for checking the code.
<span unselectable="on" class="k-dropdown-wrap k-state-default"><span unselectable="on" class="k-input">Chang</span><span unselectable="on" class="k-select" aria-label="select"><span class="k-icon k-i-arrow-60-down"></span></span></span>
Code:
from selenium import webdriver
from selenium.webdriver.common.action_chains import ActionChains
from selenium.webdriver.support.select import Select
from selenium.webdriver.common.keys import Keys
import time
driver = webdriver.Chrome('./chromedriver')
driver.get("https://demos.telerik.com/kendo-ui/dropdownlist/remotedatasource")
select = driver.find_element_by_xpath('//*[@id="example"]/div/span/span/span[1]')[0]
select.SelectByValue("Chang");
print('Success')
解決方案
To select the item with text as Chang within the kendo dropdown using Selenium you you have to induce WebDriverWait for the element_to_be_clickable()
and you can use either of the following Locator Strategies:
Using
CSS_SELECTOR
:driver.get("https://demos.telerik.com/kendo-ui/dropdownlist/remotedatasource") WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.CSS_SELECTOR, "span.k-widget.k-dropdown[aria-owns='products_listbox']"))).click() WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.CSS_SELECTOR, "div.k-animation-container>div#products-list ul li[data-offset-index='1']"))).click()
Using
XPATH
:driver.get("https://demos.telerik.com/kendo-ui/dropdownlist/remotedatasource") WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.XPATH, "http://span[@class='k-widget k-dropdown' and @aria-owns='products_listbox']"))).click() WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.XPATH, "http://div[@class='k-animation-container']/div[@id='products-list']//ul//li[text()='Chang']"))).click()
Note : You have to add the following imports :
from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.common.by import By from selenium.webdriver.support import expected_conditions as EC
Browser Snapshot:
這篇關于如何使用 unselectable=“on"選擇劍道下拉元素使用 Selenium 和 Python 的屬性的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!
【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!