Class ResourceUsageReport
represents a report that measures the resource usage of the web site during a user journey.
Implements
IDisposable
Namespace: AxaFrance.WebEngine
Assembly: AxaFrance.WebEngine.dll
Syntax
public class ResourceUsageReport : IDisposable
Properties
| Edit this page View SourceJavaScriptError
list of all javascript errors that occurred during the user journey.
Declaration
public List<JavaScriptError> JavaScriptError { get; set; }
Property Value
Type | Description |
---|---|
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 |
---|---|
Dictionary<String, NetworkRequest> |
Methods
| Edit this page 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