Class ActionReport
The test report of a single test action (keyword)
Inheritance
Namespace: AxaFrance.WebEngine.Report
Assembly: AxaFrance.WebEngine.dll
Syntax
[Serializable]
public class ActionReport
Properties
| Improve this Doc View SourceContextValues
Contexte variables genereted during the test execution. the value presented in the report are their final values.
Declaration
public List<Variable> ContextValues { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<Variable> |
Duration
Calculates the Duration of the current test action;
Declaration
public TimeSpan Duration { get; }
Property Value
Type | Description |
---|---|
System.TimeSpan |
DurationText
Calculates the Duration of the current test case and convert to readable text.
Declaration
public string DurationText { get; }
Property Value
Type | Description |
---|---|
System.String |
EndTime
The System.DateTime when the action is end. (including the time used to run checkpoint)
Declaration
public DateTime EndTime { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime |
Id
The unique identifier of the report item, generated automaticaly and used for showing report
Declaration
public string Id { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Log
RAW log of the test execution, the log will be retrived from Information after execution.
Declaration
public string Log { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Name
The name of the action.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Result
overall test result for the current test case.
Declaration
public Result Result { get; set; }
Property Value
Type | Description |
---|---|
Result |
Screenshots
The screenshots related to the current action.
Declaration
public List<ScreenshotReport> Screenshots { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<ScreenshotReport> |
StartTime
The System.DateTime when the action is started.
Declaration
public DateTime StartTime { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime |
SubActionReports
The result of the subactions.
Declaration
public List<ActionReport> SubActionReports { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<ActionReport> |