How to log Google Analytics calls in Testcafe?

℡╲_俬逩灬. 提交于 2019-12-04 19:57:02

As Marion suggested it is probably due to timing. The following code works:

import { Selector, RequestLogger } from 'testcafe';

const gaCollect = 'https://www.google-analytics.com/collect';

const gaLogger = RequestLogger({gaCollect}, {
  logRequestHeaders:     true,
  logRequestBody:        true,
});


fixture `Fixture`
    .page('http://localhost:8000')
    .requestHooks(gaLogger);

test('Log Google Analytics call', async t => {
    await t.click('#ga-button')

    await t.expect(gaLogger.contains(record =>
      record.request.url.match(/ec=my_event_category&ea=my_event_action&el=my_event_label/))).ok();

    for(let r of gaLogger.requests) {
      console.log("*** logger url: ", r.request.url);
    }

});

The timing factor @Marion mentioned seems to play a role. Compare the previous with the following snippet and its output. Here, we do not see the calls logged to https://google-analytics.com/collect.

fixture `Fixture`
    .page('http://localhost:8000')
    .requestHooks(gaLogger);

test('Log Google Analytics call', async t => {
    await t.click('#ga-button')

    for(let r of gaLogger.requests) {
      console.log("*** logger url: ", r.request.url);
    }

    await t.expect(gaLogger.contains(record =>
      record.request.url.match(/ec=my_event_category&ea=my_event_action&el=my_event_label/))).ok();
});

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!