Skip to content
This repository has been 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

Open
Joris-van-der-Wel opened this issue Aug 17, 2018 · 0 comments

Comments

@Joris-van-der-Wel
Copy link
Contributor

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');

// ...
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant