How do I submit a form inside a WebBrowser control?

后端 未结 3 1382
春和景丽
春和景丽 2020-12-08 16:40

How can I create a program with C# to submit the form(in the web browser CONTROL in windows Apps)automaticlly ?

相关标签:
3条回答
  • 2020-12-08 16:48

    If you know the page has a single form or you want the first form:

    HTMLDocument doc = webBrowser.Document as HTMLDocument;    
    HTMLFormElement form = doc.all.OfType<HTMLFormElement>().First();
    form.submit();
    
    0 讨论(0)
  • 2020-12-08 16:54

    The WebBrowser control has a Document property, which returns an HtmlDocument. The HtmlDocument has several members you can use to traverse and manipulate the DOM.

    Once you've used these methods to find the form, you can use InvokeMember to call the form's submit method.

    If you know the page has a single form:

    foreach (HtmlElement form in webBrowser1.Document.Forms)
        form.InvokeMember("submit");
    

    If you know the ID of the form you would like to submit:

    HtmlElement form = webBrowser1.Document.GetElementById("FormID");
    if (form != null)
        form.InvokeMember("submit");
    
    0 讨论(0)
  • 2020-12-08 17:06
    WebBrowser.Document.GetElementById("form_submit").InvokeMember("click");
    
    0 讨论(0)
提交回复
热议问题