Recent Posts by angus

Subscribe to Recent Posts by angus 1 post found

Mar 25, 2008
Avatar angus 1 post

Topic: Usage HOWTOs / next_page not working

Hi All

I’m an running the following code and its only returning the first pages results, what must I change so the next_page results are parsed to?

require 'rubygems'
require 'scrubyt'

google_data = Scrubyt::Extractor.define do
  fetch 'http://www.pamgolding.co.za/property_search/property_result.aspx?cboPage=1&Offset=10&cboProvince=WCPE&lstProperties=U_21620,U_21621,U_21622,U_21623,U_21624,U_21625,U_21748,U_21749,U_21627,U_21751,U_21631,U_21632,U_21633,U_21634,U_21753,U_21755,U_21636,U_21637,U_21638,U_21639,U_21757,U_21640,U_21998,U_21642,U_22627,U_21645,U_21646,U_21647,U_21648,U_21620,U_21621,U_21622,U_21623,U_21624,U_21625,U_21748,U_21749,U_21627,U_21751,U_21631,U_21632,U_21633,U_21634,U_21753,U_21755,U_21636,U_21637,U_21638,U_21639,U_21757,U_21640,U_21998,U_21642,U_22627,U_21645,U_21646,U_21647,U_21648&cboMinPrice=0&cboMaxPrice=500000000&cboBathrooms=0&cboBedrooms=0&txtResType=&chkAmenities=|&chkComplexType=|'

  property :generalize => true do
    price 'POA'
    area 'Southern Suburbs - Constantia'
    comment 'Entertainers dream, homeowners pride'
    bedrooms /Bedrooms\: \d+/
    bathrooms /Bathrooms\: \d+/
    code 'CO330998'
  end

  next_page "Next Page", :limit => 2  

end

google_data.to_xml.write($stdout,1)

Thanks