Page.loadEventFired timestamp unit
See original GitHub issueHow can I interpret the timestamps of Page.loadEventFired
and Page.domContentEventFired
? For example 40159.349892
. It can’t be milliseconds since the initial request and it can’t be a unix epoch with microseconds either. The documentation lacks this information.
Issue Analytics
- State:
- Created 6 years ago
- Comments:5 (4 by maintainers)
Top Results From Across the Web
Top 5 chrome-remote-interface Code Examples - Snyk
Learn more about how to use chrome-remote-interface, based on chrome-remote-interface code examples created from the most popular ways it is used in public ......
Read more >Pyppeteer 0.0.25 documentation - GitHub Pages
loadEventFired ', lambda event: self.emit(Page. ... metrics as key/value pairs: * ``Timestamp`` (number): The timestamp when the metrics sample was taken.
Read more >how to calculate total time for one request from chrome driver ...
I am working on selenium to track network traffic for website. I have followed referred two links: 1. Using Selenium how to get...
Read more >third_party/blink/public/devtools_protocol/browser_protocol.pdl
This turns on accessibility for the page, which can impact performance until ... Timestamp of the event (in seconds). ... Media query expression...
Read more >Page$$Event$$DomContentEventFired - javadoc.io
case class DomContentEventFired(timestamp: MonotonicTime) extends Event[Nothing] with Product with Serializable. Linear Supertypes.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Larger discussion opened on timestamps at https://groups.google.com/d/topic/chrome-debugging-protocol/X-Ts2-KygYA/discussion
Just curious – is there any reason for these timestamps being arbitrary? Couldn’t they be simply Unix epochs with microseconds as in
Date.now()
?