Hi,
You would need to use JavaScript to collect such information. The key design principles for EO.WebBrowser are:
1. Everything outside of the WebView, you do it in your .NET code;
2. Everything inside the WebView, you do it with JavaScript;
3. EO.WebBrowser provides mechanism for you to communicate between your .NET code and the JavaScript code in the page;
For example, you can do the following in your case:
1. Use WebView.JSInitCode to inject JavaScript code into the page to handle click event;
2. Inside your JavaScript click event handler, you can collect whatever information you want to collect (mouse position, which element was clicked, etc);
3. You can then use the JavaScript extension feature provided by EO.WebBrowser to pass this information to the .NET side:
https://www.essentialobjects.com/doc/webbrowser/advanced/jsext.aspxHope this helps. Please feel free to let us know if you have any more questions.
Thanks!