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
The HTML report (run.html) includes the reference to the filename and line number per request entry call (see code).
I would like to have that information in the JSON report as well, so that I can use the JSON report as the single source of results, instead of having to parse the HTML report for certain things like this, as I do now (see webscripts tool).
Proposal
Extend the JSON report (see code) to include the line numbers for each request call, instead of only providing the filename.
The text was updated successfully, but these errors were encountered:
Hi @lambrospetrou this will be part of the next Hurl release (4.2.0).
I've added a line field on the "entry" level (the parent node of a call): the entry already has the index and the call node is more about runtime - an entry can have multiple calls with retry or redirect - (it was also simpler to implement). If it's ok for you, it's good!
The current report (-run.html) shows it for each call at the moment.
I guess having it at the entry level still makes sense though, since all the calls in the entry will be about the same line in the actual source, so it should be fine.
Problem to solve
The HTML report (
run.html
) includes the reference to the filename and line number per request entry call (see code).I would like to have that information in the JSON report as well, so that I can use the JSON report as the single source of results, instead of having to parse the HTML report for certain things like this, as I do now (see webscripts tool).
Proposal
Extend the JSON report (see code) to include the line numbers for each request call, instead of only providing the filename.
The text was updated successfully, but these errors were encountered: