使用c#在网站中选择组合框项目

时间:2016-10-19 21:45:36

标签: c# winforms combobox

我需要使用c#

在网站中选择一个组合框项目

我使用网络浏览器打开网站

我的代码是

webBrowser1.Navigate("xxxxx.com");
HtmlElementCollection Col2;
Col2 = webBrowser1.Document.GetElementsByTagName("select");
            foreach (HtmlElement ele in Col2)
            {
                if (ele.Id == "country")
                {
                   ele.InnerText=("palestine");
                }
            }

巴勒斯坦在哪里是组合框中的项目之一。 任何帮助,请

1 个答案:

答案 0 :(得分:0)

webBrowser1.Document.GetElementsByTagName("select").SetAttribute("value", "palestine");

webBrowser1.Document
           .GetElementsByTagName("select")
           .Children.GetElementsByName("option")[1] // Get option by index
           .SetAttribute("selected", "selected");