Forum Discussion
nicktulett
12 years agoContributor
For me the results pane mapped to:
Aliases.Fiddler.frmViewer.pnlSessions.lvSessions
When I start the test, I send it Ctrl-X to clear the list
sessions.Keys("^x");
I was looking for 404s, adjust for your purposes:
for (var j = 0, ic = sessions.wItemCount; j < ic; j++) {
if (sessions.wItem(j, 1) === "404") {
Log.Error("Broken Link - " + sessions.wItem(j, 4));
}
}
Aliases.Fiddler.frmViewer.pnlSessions.lvSessions
When I start the test, I send it Ctrl-X to clear the list
sessions.Keys("^x");
I was looking for 404s, adjust for your purposes:
for (var j = 0, ic = sessions.wItemCount; j < ic; j++) {
if (sessions.wItem(j, 1) === "404") {
Log.Error("Broken Link - " + sessions.wItem(j, 4));
}
}