HtmlElementCollection elc = this.webBrowser1.Document.GetElementsByTagName("input"); foreach (HtmlElement el in elc) { if (el.GetAttribute("type").Equals("submit")) { el.InvokeMember("Click"); } }
private void button2_Click(object sender, EventArgs e) { webBrowser1.Navigate("http://hedefsite.com/tiklama.php"); HtmlElementCollection elc = this.webBrowser1.Document.GetElementsByTagName("form"); foreach (HtmlElement el in elc) { if (el.GetAttribute("action").Equals("git.php")) { el.InvokeMember("Click"); } } }