Network tab summary in chrome dev tools does not display the Load Time and DOMContentLoad time for the website under test - google-chrome-devtools

I am trying to calculate the time after performing an action(clicking Search button) until the time data gets loaded into the page. I am recording this action and can see lots of data in the Network tab with multiple API calls.
However in the summary section I can only see the following:
Requests|transferred|resources - see screenshot below
I cannot see the following data:
Finish|DomContentLoaded|Load time
Any help is appreciated
I can see all the data in the network tab summary section for other websites, but not for the website under test.

Possibly, you were trying to analyze an iframe. I did not see timings too when I cleared the log and reloaded the iframe (via host page functionality).

Related

Huawei Analytics - Cannot view event parameter

We are trying to set up custom parameter in Huawei HMS analytics. Using below snippets and configured the parameter ID and Parameter name under Event in Connect.
Bundle bundle = new Bundle();
bundle.putString("exam_difficulty", "high");
bundle.putString("exam_level", "1-1");
bundle.putString("exam_time", "20190520-08");
instance.onEvent("begin_examination", bundle);
Issue is we cant see the event parameter. Please can somebody clear this doubt. Please refer attached screenshot.
If you cannot view the custom parameters of the reported events on the Real-time overview or event analysis page possible cause could may be custom parameters are not added to the Event management page.
Check whether custom parameters of events have been added on the Event management page. To add a custom parameter, go to HUAWEI Analytics > Management > Events. On the Event management page, click Edit, add a custom parameter, and click Add.
For details , please refer to: https://developer.huawei.com/consumer/en/doc/development/HMSCore-Guides/javascript-custom-events-0000001051597159
FYI:
In the data reports (such as event analysis reports and retention analysis reports) of Analytics Kit, the real-time trend is updated in minutes, and all other indicators are updated the next day. After integrating Analytics Kit into your app, view the data reports on the next day.
Meanwhile you can view report to the Real-time overview page within same day . If there is no data displayed on the Real-time overview page , then possible cause could may be the debug mode is not disabled, and therefore the reported event data is displayed on the App debugging page, not the Real-time overview page.
Solution
Check whether debugMode enabled is displayed in local logs. If so, the debug mode is not disabled. Run the following command and try again:
adb shell setprop debug.huawei.hms.analytics.app .none.
For more details , please refer to our FAQ:
https://developer.huawei.com/consumer/en/doc/development/HMSCore-Guides/commissioning-faq-0000001050164019

google ad-sense is not populating the ads in my website

I am trying to populate google ad-sense into my client website and i am using
https://www.npmjs.com/package/angular-google-adsense
With view page source on msbionlineclasses.com you can see on the index page the directive is been called.
Still i am getting a blank item. Let me know the reason?
Update-1
I am getting as AD:1
Usually google starts analysing your website traffic patterns and content type once your adsense code goes live i.e. after implementing it into your HTML page.
For few days (usually 1-2 days), it will only show the empty placeholders, which is the case with you right now I guess.
Wait for 2 days and you will be able to see the results automatically.
P.S. - the usual practice I follow is to have only one adsense implementation in the footer where empty placeholder will not bother the visitors as well as the look of the page. Once it is working, implement as desired.

Finding root cause of redirect with Chrome Developer Tools

I am trying to debug a webpage with chrome developer tools and the page redirects to a pdf file after it loads. I checked JavaScript files and there is not any place that we redirect the page. I cannot find any related message in developer tool console or network tab.
I activated event Listener Breakpoints -> beforeunload but it stops at an external js file (Placeholders.js) which is not related to redirecting.
Also, preserving Logs in network tab does not help me on finding root cause of redirect.
I am wondering how can I find the source of this redirect?
UPDATE: There is not any "refresh" meta tag in the html code.
There are a couple of things you can do. You can use the Event Listener Breakpoint -> Load - unload and then when it breaks in the 3rd party library, right click and select Blackbox Script. The next time you play through the code, it should only break in your own code (assuming there are no other 3rd party libraries to blackbox).
Another option is to go to the Network tab and check the Preserve Log checkbox. This will persist all requests between page loads/navigation, so that you will be able to find the network request that returned the PDF response.

Facebook - Google analytics not capturing inner tab page events/page tracking

The issue is that I'm using Google Analytics to capture user events as the proceed through my application (sits within a tab). The landing page is working fine and data is being sent to GA but when I click on a link on the landing page that takes the user to a new page (still inside the tab) the event/page tracking isn't being captured by Google. I can see the image being requested in Firebug and the parameters are fine but I don't see any instances of it event or the page being tracked in my GA account.
Simplified: APP TAB: DefaultĀ­.aspx (tracking working) --> link to Quiz.aspx which is still in the tab (tracking stops working).
Anyone else experiencing this? Any insight you could be provide would be appreciated.

Reload a page within a specific time interval in a iphone application

In my application, i fetch data from a website in XML format. And after parsing XML file, in my iphone screen i can show some specific message from the website (that message can be updated at any time or a new message can be post in that website at any time).
So, i want to reload the page within a specific time period to show in my application the updated message.
i.e. My application will be auto refresh in after 10sec and give me the updated message list from the website.
Is it possible ??
If, than how it is possible. Please anyone briefly described it with example.
To auto-refresh you can use a meta refresh tag:
<meta http-equiv="refresh" content="5">
or some javascript, like
setTimeout("location.reload(true)", 10000)
If you're using a javascript framework, there may be other, more graceful ways of doing this.