-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
onLoad times are incorrect sometimes #28
Comments
Interesting, do the 2 files at the top of the waterfall actually belong to the request? |
Yes. |
Those 2 calls are usually at the very end on this page. |
Potentially an issue with chromium: http://code.google.com/p/chromium/issues/detail?id=141971 |
One of the potential issues could be related to how much time is mobster waiting after onLoad before starting the next iterations. If we don't wait long enough, the javascript calls after onLoad might pollute the timings in the next iteration. |
I agree. It would be great if we could simply kill all javascript activity On Tue, Apr 9, 2013 at 4:46 PM, RiteshMaheshwari
|
Never mind, that wouldn't work either... On Tue, Apr 9, 2013 at 10:13 PM, Arman Boehm [email protected] wrote:
|
I guess my question is (I haven't looked at the code), do we wait X seconds after onLoad before starting the next iteration? If so, lets make it 2X or 3X and see if that fixes it. |
Ritesh, Arman If it helps we can get on a conf call to discuss the issue. ( might be faster ) thanks From: RiteshMaheshwari [email protected] I guess my question is (I haven't looked at the code), do we wait X seconds after onLoad before starting the next iteration? If so, lets make it 2X or 3X and see if that fixes it. |
Hey Arman, There are 2 events of the browser which can be leveraged
We should do all the parsing/processing after the onBeforeUnload event , do a check at unload event $(window).onBeforeunload(function() { $(window).unload(function() { In summary for waterfall processing , we should do it after the onBeforeUnload have fired, else they wont line up and we can have a call to discuss in detail |
Sounds good I'll send you guys an email to set up the call. On Wed, Apr 10, 2013 at 3:04 PM, anantrao [email protected] wrote:
|
See the attachment. I think this is a bug with chromium, but if they are not able to solve it, we need a way to detect and resolve this in mobster. One potential approach is to look at the start time of the page requested and ignore stuff before it (in the har/waterfall)
The text was updated successfully, but these errors were encountered: