For some reasons, I need to get error count of a webiste. I've been checking google for a while now but can't find any solutions. . In the picture, I want the value 5. How can I do it?
Asked
Active
Viewed 150 times
0

Ago
- 755
- 7
- 28
-
2My experience with chromium unfortunately is very poor. I found many entries by searching for "ErrorCount" on https://cs.chromium.org/ - Thanks to Nasreddine Galfout for preventing me from beeing Downvoted under 50 reputation :D – fisi-pjm Jun 21 '19 at 10:48
-
@fisi-pjm Welcome to Stack Overflow. once you get how this site works. I'm sure you will love the quality and appreciate the effort made by the community to keep it high. – Nasreddine Galfout Jun 21 '19 at 13:33
-
1You need to enable the remote debugging in that browser to get all the information available in the DevTools. Assuming you use CEF4Delphi to embed a chromium browser in your Delphi application you would have to set the GlobalCEFApp.RemoteDebuggingPort property before the GlobalCEFApp.StartMainProcess call in the DPR file. The DOMVisitor sets GlobalCEFApp.RemoteDebuggingPort to 9000. Run it and navigate to http://localhost:9000/ using another browser to start debugging. Read this for more info about the protocol you will use : https://chromedevtools.github.io/devtools-protocol/ – Salvador Díaz Fau Jun 21 '19 at 14:16
-
@fisi-pjm See [50 reputation points to make comments](https://meta.stackoverflow.com/q/252133/62576) for an explanation of why the rep is needed. – Ken White Jun 25 '19 at 01:32