C# 肯杜伊下拉列表

C# 肯杜伊下拉列表,c#,selenium-webdriver,C#,Selenium Webdriver,我很难从KendoUI下拉列表中选择一个选项,然后单击搜索按钮以获得结果。问题在于KendoUI下拉列表,它不同于您可以使用SendKeys的常规下拉列表 代码 HTML -所有状态- 搜寻 重置 U可以通过driver.findelelement(通过.CssSelector(“.k-dropdown>span:nth child(1)”)直接选择下拉列表中的项目。发送键(“在dropdownlist中输入单词”)可以在此处添加完整的html吗?发送键不工作我有一个文本框、KendoUi下

我很难从KendoUI下拉列表中选择一个选项,然后单击搜索按钮以获得结果。问题在于KendoUI下拉列表,它不同于您可以使用SendKeys的常规下拉列表

代码

HTML


-所有状态-
搜寻
重置

U可以通过driver.findelelement(通过.CssSelector(“.k-dropdown>span:nth child(1)”)直接选择下拉列表中的项目。发送键(“在dropdownlist中输入单词”)可以在此处添加完整的html吗?发送键不工作我有一个文本框、KendoUi下拉列表和其他两个下拉列表,它们发送键,但不发送KendoUi下拉列表,我用完整的HTML更新了HTMLI编辑的原始帖子,还添加了imageHi JeffC你能帮我完成我的自动化吗谢谢
public static void SelectSearchOption()
{
    Driver.FindElement(By.CssSelector(".k-dropdown > span:nth-child(1)")).Click();
    Driver.FindElement(By.CssSelector(".k-animation-container")).Click();
    Driver.FindElement(By.LinkText("Search")).Click();
}  
<div style="background-color: #e6e6e6; padding: 10px 10px; margin-bottom: 10px;">
    <div class="row">
        <div class="col-md-4">
            <div class="form-group">
                <input class="k-input form-control" id="searchColonies" placeholder="Colony Name" data-bind="value: searchParameter" type="text">
            </div>
        </div>
        <div class="col-md-4">
            <span style="width: 100%;" title="" class="k-widget k-dropdown k-header" unselectable="on" role="listbox" aria-haspopup="true" aria-expanded="false" tabindex="0" aria-owns="" aria-disabled="false" aria-busy="false" aria-activedescendant="549cac5d-6e77-4c5b-b528-cc6321984d37">
                <span unselectable="on" class="k-dropdown-wrap k-state-default">
                    <span unselectable="on" class="k-input">- All Statuses -</span>
                    <span unselectable="on" class="k-select" aria-label="select"><span class="k-icon k-i-arrow-60-down"></span></span>
                </span>
                <input data-role="dropdownlist" data-value-primitive="true" data-text-field="Status" data-value-field="StatusID" data-option-label="- All Statuses -" data-bind="value: selectedStatus, source: statuses" style="width: 100%; display: none;">
            </span>
        </div>
    </div>
    <div class="row">
        <div class="col-md-4">
            <span style="width: 100%;" class="k-widget k-combobox k-header k-combobox-clearable">
                <span tabindex="-1" unselectable="on" class="k-dropdown-wrap k-state-default">
                    <input class="k-input" autocomplete="off" style="" title="" role="combobox" aria-expanded="false" placeholder="- All Organizations -" tabindex="0" aria-disabled="false" aria-autocomplete="list" aria-owns="" aria-busy="false" aria-activedescendant="5e10bcaf-d176-4665-821b-8e94d8ce1be8" type="text">
                    <span unselectable="on" class="k-icon k-clear-value k-i-close k-hidden" title="clear" role="button" tabindex="-1"></span>
                    <span unselectable="on" class="k-select" aria-label="select" role="button" tabindex="-1"><span class="k-icon k-i-arrow-60-down"></span></span>
                </span>
                <input data-role="combobox" data-value-primitive="true" data-text-field="Name" data-value-field="OrganizationID" data-placeholder="- All Organizations -" data-bind="value: selectedOrganization, source: organizations, events: { change: onOrganizationChange }" style="width: 100%; display: none;" aria-disabled="false">
            </span>
        </div>
        <div class="col-md-4">
            <span style="width: 100%;" class="k-widget k-combobox k-header k-combobox-clearable">
                <span tabindex="-1" unselectable="on" class="k-dropdown-wrap k-state-disabled">
                    <input class="k-input" autocomplete="off" style="" title="" role="combobox" aria-expanded="false" placeholder="- All Projects -" tabindex="0" aria-disabled="true" aria-autocomplete="list" aria-owns="" aria-busy="false" disabled="disabled" type="text">
                    <span unselectable="on" class="k-icon k-clear-value k-i-close k-hidden" title="clear" role="button" tabindex="-1"></span>
                    <span unselectable="on" class="k-select" aria-label="select" role="button" tabindex="-1">
                        <span class="k-icon k-i-arrow-60-down"></span>
                    </span>
                </span>
                <input data-role="combobox" data-value-primitive="true" data-text-field="ProjectNumber" data-value-field="ProjectNumber" data-placeholder="- All Projects -" data-bind="value: selectedProject, source: projects, enabled: selectedOrganization" style="width: 100%; display: none;" aria-disabled="true" disabled="disabled">
            </span>
        </div>
        <div class="col-md-4">
            <div class="form-group">
                <a class="k-button k-button-primary" data-bind="click: searchColonies">Search</a>
                <a class="k-button" data-bind="click: resetColoniesGrid">Reset</a>
            </div>
        </div>
    </div>
</div>