I am trying to get position of html elements in a .net's webbrowser control and failing, i need the exact position of the element relative to the whole document or the webbrowser control to be able to send a mouse click using SendMessage() P/Invoke ..
I have tried the solution from here but it didn't work: getting absolute position of HTML element in webbrowser control with C#
I am guessing that is because the page relies on very complex ajax and css.
the function "WebBrowser1.Document.GetElementFromPoint()" works just fine in getting the accurate html element, i just need the opposite of it.
other wise, should i just keep on searching using "GetElementFromPoint()" until getting the correct element ???
Thanks.
