Class: CapybaraPageObject::Head

Inherits:
Node
  • Object
show all
Defined in:
lib/element/head.rb

Instance Attribute Summary

Attributes inherited from Node

#source

Instance Method Summary collapse

Methods inherited from Node

#classes, from_string, #initialize

Methods included from HTML5Data

#data

Methods included from Collections

#forms, #key, #tables, #value

Methods included from Delegators

#all, #find, #text

Constructor Details

This class inherits a constructor from CapybaraPageObject::Node

Instance Method Details

#meta_descriptionObject



7
8
9
# File 'lib/element/head.rb', line 7

def meta_description
  find('meta[@name="description"]')['content']
end

#meta_keywordsObject



11
12
13
# File 'lib/element/head.rb', line 11

def meta_keywords
  find('meta[@name="keywords"]')['content'].split(',').collect(&:strip)
end

#titleObject



3
4
5
# File 'lib/element/head.rb', line 3

def title
  find('title').text
end