class WebkitRemote::Event::PageLoaded
Emitted when a page's load event is triggerred.
Attributes
timestamp[R]
@return [Number] the event timestamp
Public Class Methods
can_reach?(client)
click to toggle source
@private Use Event#can_receive instead of calling this directly.
# File lib/webkit_remote/client/page_events.rb, line 19 def self.can_reach?(client) client.page_events end
new(rpc_event, client)
click to toggle source
@private Use Event#for instead of calling this constructor directly.
Calls superclass method
WebkitRemote::Event::new
# File lib/webkit_remote/client/page_events.rb, line 13 def initialize(rpc_event, client) super @timestamp = raw_data['timestamp'] end