Class: Wombat::Property::Locators::Follow

Inherits:
Base
  • Object
show all
Defined in:
lib/wombat/property/locators/follow.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/follow.rb', line 7

def locate(context, page = nil)
	super do
      locate_nodes(context).flat_map do |node|
        target_page = page.click node
        context = target_page.parser

        filter_properties(context, page)
      end
    end
end