| bio | website | jasongdove.com |
|---|---|---|
| location | ||
| age | 28 | |
| visits | member for | 5 months |
| seen | Jan 31 at 17:14 | |
| stats | profile views | 0 |
|
Jan 11 |
answered | Selenium - page load timeout |
|
Jan 11 |
answered | How to start a Selenium2 WebDriver window in background? |
|
Jan 10 |
comment |
Selenium WebDriver: select value from KendoUI DropDownList The code sample in the OP may be misleading because the .kendoDropDownList() method hides the select element and adds its own KendoUI-styled span elements, so it isn't just a select anymore. |
|
Jan 10 |
comment |
Selenium WebDriver: select value from KendoUI DropDownList If you look at the demo page I linked, the drop downs on that page are not select elements, they are styled spans. The underlying select has display: none. The "user" that Selenium is simulating has no ability to click on the select itself because it is never displayed. |
|
Jan 10 |
comment |
Selenium WebDriver: select value from KendoUI DropDownList Just because of how the Kendo UI DropDownList is written. The controls you see on the page aren't actually the select elements. $($('#size')[0][2]).select(); does not work, but $('#size').data('kendoDropDownList').select(2); does. Click just appears to open the drop down, not select anything. |
|
Jan 10 |
awarded | Teacher |
|
Jan 8 |
awarded | Editor |
|
Jan 8 |
revised |
Selenium WebDriver: select value from KendoUI DropDownList converted to extension off of IWebDriver rather than IWebElement |
|
Jan 8 |
answered | Selenium WebDriver: select value from KendoUI DropDownList |