Auto click link on Web Browser C#

Use this example code:

        void click()
        {
            HtmlElement links = webBrowser1.Document.GetElementById("skip_button");
            if (!(links .Style.Contains("none"))

            {
                       links.InvokeMember("Click");
                    }

        }