JSErrorCollector icon indicating copy to clipboard operation
JSErrorCollector copied to clipboard

Collects JS errors and make them available from WebDriver

Results 12 JSErrorCollector issues
Sort by recently updated
recently updated
newest added

Is there anyway such that I can get all the console error logs (not only javascript) using this , maybe be tweaking this source code?

I'm using WebDriver to start Firefox. Then I use SikuliX to send keystrokes and mouse clicks. After, I try to collect all errors by using: ``` JavaScriptError.readErrors(driver) ``` The result...

Hi, It could be great if you can make the JAR of 'JSErrorCollector' is available to the Maven central repository(http://search.maven.org/). Regards, Mahadi

Hello ! Thanks for your API! As I can see in source code you use ```window.JSErrorCollector_errors.pump()``` , but when the code try to execute this command we can see next...

Allows one to get all the console info, not just the errors.

This PR exposes the remaining attributes of nsIScriptError (https://developer.mozilla.org/en-US/docs/Mozilla/Tech/XPCOM/Reference/Interface/nsIScriptError) - most importantly, `flags` which permits distinguishing errors (technically exceptions) from warnings in the code that uses JSErrorCollector.

Added ability to store web page url in JavaSrciptError class necessity of which I had explained in that issue https://github.com/mguillem/JSErrorCollector/issues/15

I was trying to capture error like https://docs.angularjs.org/error/$compile/multidir, via JSErrorCollector, but it is not able to capture this type of errors. attached is the screen-shot of error I am trying...

Hi, I've just added ability to filter out warnings.

Thank you for the great API. Not long ago I've started use it and found several js-errors with it. When I wrote bug-reports about found errors I realized that it's...