I hit another bump
webBrowser1.Document.GetElementById("submit_button").InvokeMember("click");
When it runs the button moves in the browser but it still do not work, I have to click the button twice that runs the code then it works
I tried using
webBrowser1.Document.GetElementById("submit_button").Focus();
webBrowser1.Document.GetElementById("submit_button").InvokeMember("click");
still not working
I think I need some kind of double click instead of only clicking once