diff --git a/testing/talos/talos/tests/devtools/addon/content/damp.js b/testing/talos/talos/tests/devtools/addon/content/damp.js index 11434884325f..2e50ba326502 100644 --- a/testing/talos/talos/tests/devtools/addon/content/damp.js +++ b/testing/talos/talos/tests/devtools/addon/content/damp.js @@ -802,6 +802,15 @@ async _consoleOpenWithCachedMessagesTest() { test.done(); }, + async exportHar(label, toolbox) { + let test = this.runTest(label + ".exportHar"); + + // Export HAR from the Network panel. + await toolbox.getHARFromNetMonitor(); + + test.done(); + }, + async _coldInspectorOpen() { await this.testSetup(SIMPLE_URL); await this.openToolboxAndLog("cold.inspector", "inspector"); @@ -1091,6 +1100,7 @@ async _consoleOpenWithCachedMessagesTest() { const requestsDone = this.waitForNetworkRequests(label + ".netmonitor", toolbox, expectedRequests); await this.reloadPageAndLog(label + ".netmonitor", toolbox); await requestsDone; + await this.exportHar(label + ".netmonitor", toolbox); await this.closeToolboxAndLog(label + ".netmonitor", toolbox); await this.testTeardown(); },