Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to simulate mouse click with the WebBrowser control

Using the WebBrowser control I am able to call an event when the mouse button is manually clicked, but I want the program to do the click itself, not do something when I manually perform the click.

For example, if I provide the ID of a control on the page I want the program to click it.

Here's what I have so far:

HtmlElement button = webBrowser1.Document.GetElementById("lButtonSearch");
button.Click += new HtmlElementEventHandler(GotoSearchPage);
like image 804
The Muffin Man Avatar asked Mar 01 '11 04:03

The Muffin Man


1 Answers

Quite easily, simply use:

button.InvokeMember("click");
like image 125
Kyle Rosendo Avatar answered Oct 04 '22 19:10

Kyle Rosendo