fix: report html display the value of the url instead of variables

This commit is contained in:
ywb
2023-04-18 17:37:33 +08:00
parent 8a66a777f9
commit 1547cf2074

View File

@@ -187,6 +187,9 @@ func (r *requestBuilder) prepareUrlParams(stepVariables map[string]interface{})
r.req.URL = u
r.req.Host = u.Host
// update url
r.requestMap["url"] = u
return nil
}