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



361
362
363
364
365
# File 'lib/puppeteer/page.rb', line 361

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.



366
367
368
# File 'lib/puppeteer/page.rb', line 366

def content
  @content
end

#pathObject (readonly)

Returns the value of attribute path.



366
367
368
# File 'lib/puppeteer/page.rb', line 366

def path
  @path
end

#urlObject (readonly)

Returns the value of attribute url.



366
367
368
# File 'lib/puppeteer/page.rb', line 366

def url
  @url
end