class WebkitRemote::Event::PageDomReady
Emitted when a page's DOMcontent 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 38 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 32 def initialize(rpc_event, client) super @timestamp = raw_data['timestamp'] end