Class: Puppeteer::Page::StyleTag

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(content: nil, path: nil, url: nil) ⇒ StyleTag

Returns a new instance of StyleTag.

Parameters:



395
396
397
398
399
# File 'lib/puppeteer/page.rb', line 395

def initialize(content: nil, path: nil, url: nil)
  @content = content
  @path = path
  @url = url
end

Instance Attribute Details

#contentObject (readonly)

Returns the value of attribute content.



400
401
402
# File 'lib/puppeteer/page.rb', line 400

def content
  @content
end

#pathObject (readonly)

Returns the value of attribute path.



400
401
402
# File 'lib/puppeteer/page.rb', line 400

def path
  @path
end

#urlObject (readonly)

Returns the value of attribute url.



400
401
402
# File 'lib/puppeteer/page.rb', line 400

def url
  @url
end