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:



392
393
394
395
396
# File 'lib/puppeteer/page.rb', line 392

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.



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

def content
  @content
end

#pathObject (readonly)

Returns the value of attribute path.



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

def path
  @path
end

#urlObject (readonly)

Returns the value of attribute url.



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

def url
  @url
end