public
Description: A handful (but hopefully growing amount) of scRUBYt! examples
Homepage: http://scrubyt.org
Clone URL: git://github.com/scrubber/scrubyt_examples.git
scrubyt_examples / ebay.rb
100644 17 lines (12 sloc) 0.31 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#simple ebay example
 
require 'rubygems'
require 'scrubyt'
 
ebay_data = Scrubyt::Extractor.define do
 
     fetch 'http://www.ebay.com/'
     fill_textfield 'satitle', 'ipod'
     submit
     
     record "//table[@class='nol']" do
       name "//td[@class='details']/div/a"
     end
end
 
puts ebay_data.to_xml