Module Values.TestGridSessionActionSource

An action taken by a TestGridSession browser instance.

Sourcetype nonrec t = {
  1. action : String_.t option;
    (*

    The action taken by the session.

    *)
  2. started : DateTime.t option;
    (*

    The time that the session invoked the action.

    *)
  3. duration : Long.t option;
    (*

    The time, in milliseconds, that the action took to complete in the browser.

    *)
  4. statusCode : String_.t option;
    (*

    HTTP status code returned to the browser when the action was taken.

    *)
  5. requestMethod : String_.t option;
    (*

    HTTP method that the browser used to make the request.

    *)
}
Sourceval make : ?action:??? -> ?started:??? -> ?duration:??? -> ?statusCode:??? -> ?requestMethod:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Long.t | `String of String_.t | `Timestamp of DateTime.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t