You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using selenium integrated with har-export-trigger to capture requests for my web page,
I have set below preferences>
"devtools.netmonitor.har.includeResponseBodies", true;
"extensions.netmonitor.har.enableAutomation", true;
"devtools.webconsole.persistlog", true
"extensions.netmonitor.har.contentAPIToken", "test"
"extensions.netmonitor.har.autoConnect", true
"devtools.netmonitor.har.defaultLogDir",""
All the request are getting captured,
But when a page starts loading and in the middle of page load if the page redirects to another page, the requests before page redirection are missing.
js used to capture har:
var options = {
token: "test",
getData: true,
type: "none",
fileName: "testName_harfile-%y%m%d%H%M%S" // Name of the file
};
Hi,
I am using selenium integrated with har-export-trigger to capture requests for my web page,
I have set below preferences>
"devtools.netmonitor.har.includeResponseBodies", true;
"extensions.netmonitor.har.enableAutomation", true;
"devtools.webconsole.persistlog", true
"extensions.netmonitor.har.contentAPIToken", "test"
"extensions.netmonitor.har.autoConnect", true
"devtools.netmonitor.har.defaultLogDir",""
All the request are getting captured,
But when a page starts loading and in the middle of page load if the page redirects to another page, the requests before page redirection are missing.
js used to capture har:
var options = {
token: "test",
getData: true,
type: "none",
fileName: "testName_harfile-%y%m%d%H%M%S" // Name of the file
};
HAR.triggerExport(options).then(result => {
});
Browser: Firefox 45.9.0
har-export-trigger version: -0.5.0-beta.7
Please help.
Thanking in advance.
Ravi
The text was updated successfully, but these errors were encountered: