简体   繁体   中英

how to select kendo-drop down in selenium webdriver using python or java

in kendo dropdown, I get only class name can't get other elements from inspect element so what should I do I get only this fields by inspecting element

Shardul Patel

Use keyboard keys in selenium to move up and down to select the kendo drop down values.

Actions action = new Actions(driver);
action.sendkeys(keys.DOWN).build().perform();

Use with your webelement and get the desired results. Do let me know in case of any concerns.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM