0

我使用 C# 在我的 WinForm 应用程序中加载了一个网页

我需要以编程方式将数据键入该页面上的特定字段(不使用 WATIN)。

如果有人有任何其他解决方案,我愿意接受。

有问题的页面没有 AJAX 或 JavaScript。它们是简单的 HTML 数据输入表单。

4

4 回答 4

4

您可以使用控件的Document属性来执行此WebBrowser操作:

C#代码:

if (webBrowser1.Document == null) return;
var form = webBrowser1.Document.Forms[0]; //form element
var input = form.Children[0]; //input element
input.SetAttribute("value","input value"); //set the input value
form.InvokeMember("submit"); //submit the form

加载到WebBrowser控件中的演示 HTML 页面:

<html>
<head>
    <title></title>
</head>
<body>
    <form method="post" action="">
        <input type="text" name="testInput" value="test"/>
        <input type="submit" value="submit"/>
    </form>
</body>
</html>
于 2012-08-21T15:48:58.837 回答
3

假设您正在将网页加载到 WinForm 应用程序上的 WebBrowser 控件中,您应该能够通过 WebBrowser.HtmlDocument.DomDocument 属性访问文档。这是通过 MSHTML.IHTMLDocument2 接口对页面的 IE DOM 的非托管引用。

于 2012-08-21T15:19:23.877 回答
3

使用 WebClient下载页面并使用HtmlAgilityPack对其进行解析。

一个例子:

using (var wc = new WebClient())
{
    var page = wc.DownloadString(url);

    HtmlAgilityPack.HtmlDocument doc = new HtmlAgilityPack.HtmlDocument();
    doc.LoadHtml(page);

    //XPath
    var title = doc.DocumentNode.SelectSingleNode("//title").InnerText;
    var text = doc.DocumentNode.SelectSingleNode("//div[@id='readInner']")
                  .InnerText;
    //Linq
    var text = doc.DocumentNode.Descendants("div")
                .Where(n => n.Attributes["id"].Value == "readInner")
                .First()
                .InnerText;
}
于 2012-08-21T15:20:58.570 回答
1

使用 MSHTML.Dll 和 SHDocVw.dll

我只是粘贴代码,将代码从 winform 转换到 IE 浏览器,您只需单击按钮数据即可传输到网页,但网页上的控件和您的 Html 页面上的控件相同

private SHDocVw.InternetExplorer TargetIE = null;
        string url;
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            GetTheIEObjectFromSystem);
            SendTextToActiveElementWithSubmitOptionSet();
        }
        private void GetTheIEObjectFromSystem(
        {
            SHDocVw.ShellWindows SWs = new SHDocVw.ShellWindows();
            foreach (SHDocVw.InternetExplorer internetExplorer in SWs)
            {
                url = internetExplorer.LocationURL;
                TargetIE = internetExplorer;
                return;
            }

        }
        private void SendTextToActiveElementWithSubmitOptionSet()
        {
            mshtml.IHTMLDocument2 document = null;
            document = TargetIE.Document as mshtml.IHTMLDocument2;
            if (!document.activeElement.isTextEdit)
            {
                MessageBox.Show("Active element is not a text-input system");
            }
            else
            {
                HTMLInputElement HTMLI;
                HTMLI = document.activeElement as HTMLInputElement;
                var tag = HTMLI.document as mshtml.HTMLDocumentClass;
                mshtml.IHTMLElementCollection hTMLElementCollection = tag.getElementsByTagName("input");
                //for (int i = 0; i < a.length; i++)
                {
                    foreach (mshtml.HTMLInputElement el in hTMLElementCollection)
                    {
                        switch (el.id)
                        {
                            case "txtFirstName":
                                el.value = textBox1.Text;
                                break;
                            case "txtLastName":
                                el.value = textBox2.Text;
                                break;
                            case "txtAddress":
                                el.value = textBox3.Text;
                                break;
                            case "txtMobile":
                                el.value = textBox4.Text;
                                break;
                        }                        
                    }
                }


            }
        }

您可以根据需要进行更改,我相信它有效

于 2014-01-02T11:12:30.207 回答