PP
Size: a a a
PP
PP
cm
PP
PP
PP
PP
cm
PP
PP
cm
cm
cm
PP
AK
И
AK
И
AK
var aI = AllureLifecycle.Instance;
foreach (var el in reportData)
{
aI.AddAttachment($"{el.StepName} Curl", "text/plain", el.Curl);
aI.AddAttachment($"{el.StepName} Response", "text/plain", el.Response);
}
public class ReportData
{
public string StepName { get; set; }
public string Curl { get; set; }
public string Response { get; set; }
public string Default { get; set; }
}