No events are recorded in this example: ```js '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: ```js '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'); // ... ```
No events are recorded in this example:
However if it is changed to this, I can now see http events in the breakdown: