Is there a way to measure the code coverage of JavaScript on a website using WebDriver, even without server-side access?
For instance, if I use Selenium WebDriver to interact with javascript elements on a site like stackoverflow.com, is there a method to gauge how much of the loaded JavaScript code is being executed in my browser?
Although tools like JsCover and JsCoverage are popular for this purpose, they typically require server access.
Any assistance would be greatly appreciated.