Module Values.CreateTestGridUrlResultSource

Creates a signed, short-term URL that can be passed to a Selenium RemoteWebDriver constructor.

Sourcetype nonrec t = {
  1. url : SensitiveString.t option;
    (*

    A signed URL, expiring in CreateTestGridUrlRequest$expiresInSeconds seconds, to be passed to a RemoteWebDriver.

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

    The number of seconds the URL from CreateTestGridUrlResult$url stays active.

    *)
}
Sourcetype nonrec error = [
  1. | `ArgumentException of ArgumentException.t
  2. | `InternalServiceException of InternalServiceException.t
  3. | `NotFoundException of NotFoundException.t
  4. | `Unknown_operation_error of string * string option
]
Sourceval make : ?url:??? -> ?expires:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ArgumentException of ArgumentException.t | `InternalServiceException of InternalServiceException.t | `NotFoundException of NotFoundException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ArgumentException of ArgumentException.t | `InternalServiceException of InternalServiceException.t | `NotFoundException of NotFoundException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `String of SensitiveString.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