Class: Maxwell::Helper

Inherits:
Object
  • Object
show all
Defined in:
lib/maxwell/helper.rb

Class Method Summary collapse

Class Method Details



3
4
5
6
# File 'lib/maxwell/helper.rb', line 3

def self.open_links(url, link_selectore, use_poltergeist=false)
  html = ::Maxwell::Converter.call(url, use_poltergeist)
  html.css(link_selectore).map { |a| a[:href] }
end