C# How to Click Button automatically via WebBrowser

后端 未结 5 2105
隐瞒了意图╮
隐瞒了意图╮ 2020-12-05 08:19

The Html code of my click page is :



        
相关标签:
5条回答
  • 2020-12-05 08:43

    This may help you.

    <input type="submit" value="Submit" />
    
    HtmlElementCollection elc = this.webBrowser1.Document.GetElementsByTagName("input");  
    foreach (HtmlElement el in elc)  
    {  
       if (el.GetAttribute("type").Equals("submit"))  
       {  
            el.InvokeMember("Click");  
       }  
     }
    
    0 讨论(0)
  • 2020-12-05 08:48

    Try a combination of @adam's suggestion and capitalize Click

    private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
    {
        webBrowser1.Document
            .GetElementById("ctl00_main_LoginExpoPlanIt_LoginButton")
            .InvokeMember("Click");
    }
    

    Just tested this and it didn't work with "click" but did with "Click" :)

    I'm using .net 4

    0 讨论(0)
  • 2020-12-05 08:51

    You can use jQuery and then do something like this $("#publishButton-ns").click();

    http://www.jQuery.com/

    0 讨论(0)
  • 2020-12-05 08:53

    Are you waiting for the page to load first? You should bind a function in your code to wait for the page to load, them click the button:

    static void form1_Load() {
        // ...
        webBrowser1.onDocumentReady += webBrowser_DocumentReady;
    }
    
    static void webBrowser1_DocumentReady() {
        webBrowser1.Document.GetElementById("publishButton-ns").InvokeMember("Click");
    }
    
    0 讨论(0)
  • 2020-12-05 09:04

    EDIT: This only applies when runat="server" is set, not applicable in this case but leaving for others just in case, my apologies on missing that in the question.

    ASP.Net changes the name of elements it renders based on the structure they are in, you can try the following to get the final name of the element:

    webBrowser1.Document.GetElementById("<%=publishButton-ns.ClientID%>").InvokeMember("click");
    
    0 讨论(0)
提交回复
热议问题