Values.TestGridSessionActionSourceAn action taken by a TestGridSession browser instance.
type nonrec t = {action : String_.t option;The action taken by the session.
*)started : DateTime.t option;The time that the session invoked the action.
*)duration : Long.t option;The time, in milliseconds, that the action took to complete in the browser.
*)statusCode : String_.t option;HTTP status code returned to the browser when the action was taken.
*)requestMethod : String_.t option;HTTP method that the browser used to make the request.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Long of Long.t
| `String of String_.t
| `Timestamp of DateTime.t ])
list ]