Class: Wombat::Property::Locators::Html

Inherits:
Base
  • Object
show all
Defined in:
lib/wombat/property/locators/html.rb

Instance Method Summary collapse

Methods inherited from Base

#initialize

Methods included from Wombat::Processing::NodeSelector

#select_nodes

Constructor Details

This class inherits a constructor from Wombat::Property::Locators::Base

Instance Method Details

#locate(context, page = nil) ⇒ Object



7
8
9
10
11
12
13
14
15
16
# File 'lib/wombat/property/locators/html.rb', line 7

def locate(context, page = nil)
  node = locate_nodes(context).first
  value = 
    unless node
      nil
    else 
      node.inner_html.strip
    end
  super { value }
end