diff --git a/lib/plugins/browsertime/index.js b/lib/plugins/browsertime/index.js index 5c45a558f..6edb4f77f 100644 --- a/lib/plugins/browsertime/index.js +++ b/lib/plugins/browsertime/index.js @@ -262,6 +262,10 @@ module.exports = { ); } run.har = api.pickAPage(result.har, harIndex); + } else { + // If we do not have a HAR, use browser info from options + const testInfo = { browser: options.browser }; + queue.postMessage(make('browsertime.browser', testInfo)); } // Hack to get axe data. In the future we can make this more generic