Class: Puppeteer::JSHandle

Inherits:
Object
  • Object
show all
Defined in:
lib/isomorfeus/puppeteer/js_handle.rb

Instance Method Summary collapse

Instance Method Details

#await_ruby(ruby_source = '', file = nil, line = nil, &block) ⇒ Object



10
11
12
# File 'lib/isomorfeus/puppeteer/js_handle.rb', line 10

def await_ruby(ruby_source = '', file = nil, line = nil, &block)
  execution_context.await_ruby(ruby_source, file, line, &block)
end

#eval_ruby(ruby_source = '', file = nil, line = nil, &block) ⇒ Object



2
3
4
# File 'lib/isomorfeus/puppeteer/js_handle.rb', line 2

def eval_ruby(ruby_source = '', file = nil, line = nil, &block)
  execution_context.eval_ruby(ruby_source, file, line, &block)
end

#eval_with_opal(ruby_source = '', file = nil, line = nil, &block) ⇒ Object



6
7
8
# File 'lib/isomorfeus/puppeteer/js_handle.rb', line 6

def eval_with_opal(ruby_source = '', file = nil, line = nil, &block)
  execution_context.eval_with_opal(ruby_source, file, line, &block)
end