class

HAR::Page

Inherits JSON::Serializable < Reference < Object

Constructors

new(started_date_time : String | Time | Nil = nil, id : Nil | String = nil, title : Nil | String = nil, page_timings : Nil | HAR::PageTimings = nil, comment : Nil | String = nil)
Source
new(*, __pull_for_json_serializable pull : JSON::PullParser)
Source

Instance methods

comment

A comment provided by the user or the application.

Source
comment=(comment : String | Nil)

A comment provided by the user or the application.

Source
id

Unique identifier of a page within the Log. Log#entries use it to refer to the parent page.

Source
id=(id : String | Nil)

Unique identifier of a page within the Log. Log#entries use it to refer to the parent page.

Source
page_timings

Detailed timing info about page load.

Source
page_timings=(page_timings : PageTimings | Nil)

Detailed timing info about page load.

Source
started_date_time

Date and time stamp for the beginning of the page load (ISO 8601 - YYYY-MM-DDThh:mm:ss.sTZD, e.g. 2009-07-24T19:20:30.45+01:00).

Source
started_date_time=(started_date_time : Time | String | Nil)

Date and time stamp for the beginning of the page load (ISO 8601 - YYYY-MM-DDThh:mm:ss.sTZD, e.g. 2009-07-24T19:20:30.45+01:00).

Source
title

Page title.

Source
title=(title : String | Nil)

Page title.

Source