How Do I Use C# to read data from a Chrome browser's Events?
I want to develop an application that interacts with Events that occur on a specific website.
Where would I find information about this?
Within Chrome, when I go into "More Tools>>>Developer Tools>>>Console", I can witness events taking place in real time. I want to read the values that those Events are passing.
Update:
I already know fundamentals of C# programming. I would only like to know how to access the Chrome browser's Events using C# programming.
1 Answer
Relevance
- ChrisLv 72 years agoFavorite Answer
With C# you'd use a headless browser like Selenium: http://toolsqa.com/selenium-webdriver/launching-sa...
You can now "pretend" to be a browser and react to the website's JavaScript events.
Still have questions? Get your answers by asking now.