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

Description
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');
// ...