Class ResourceUsageReport
represents a report that measures the resource usage of the web site during a user journey.
Implements
System.IDisposable
Namespace: AxaFrance.WebEngine
Assembly: AxaFrance.WebEngine.dll
Syntax
public class ResourceUsageReport : IDisposable
Properties
| Improve this Doc View SourceJavaScriptError
list of all javascript errors that occurred during the user journey.
Declaration
public List<JavaScriptError> JavaScriptError { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<JavaScriptError> |
NetworkRequests
list of all network requests made by the web site during the user journey.
Declaration
public Dictionary<string, NetworkRequest> NetworkRequests { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.Dictionary<System.String, NetworkRequest> |
Methods
| Improve this Doc View SourceDispose()
Stop monitoring and dispose the used ressources
Declaration
public void Dispose()
StopMonitoring()
Stop minotoring web traffics. Run it before you need to close the test session or write report to file.
Declaration
public virtual void StopMonitoring()
Implements
System.IDisposable