Skip to content
This repository was archived by the owner on Oct 3, 2024. It is now read-only.
This repository was archived by the owner on Oct 3, 2024. It is now read-only.

httpEvents does not record any events if it is included too late #48

@Joris-van-der-Wel

Description

@Joris-van-der-Wel

No events are recorded in this example:

'Openrunner-Script: v1';
const expect = await include('expect');
const tabs = await include('tabs');
const screenshot = await include('screenshot');
const requestBlocking = await include('requestBlocking');
await include('contentEvents');
await include('httpEvents');
await include('wait');
await include('eventSimulation');

// ...

However if it is changed to this, I can now see http events in the breakdown:

'Openrunner-Script: v1';
await include('httpEvents');
const expect = await include('expect');
const tabs = await include('tabs');
const screenshot = await include('screenshot');
const requestBlocking = await include('requestBlocking');
await include('contentEvents');
await include('wait');
await include('eventSimulation');

// ...

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions