0
votes
1answer
31 views

How do I convert a Nokogiri statement into Mechanize for screen scraping?

I'm trying to use Mechanize to scape some tags from a page. I've used Nokogiri successfully to scrape them before, but now I'm trying to combine them into a wider Mechanize class. Here is the Nokogiri ...
3
votes
1answer
108 views

Store and iterate over array of links using Nokogiri/Mechanize

I'm trying to store a list of links into an array and then iterate through them. I have this rake task: https://gist.github.com/farooqyousuf/5268460 Currently, the rake task goes through a page and ...
0
votes
2answers
151 views

Nokogiri and Mechanize help (navigating to pages via div class and scraping)

I need help clicking on some elements via div class, not by text of link, to get to a page to scrape some data. Starting with the page http://www.salatomatic.com/b/United-States+125, how do I click ...
0
votes
1answer
75 views

Use nokogiri or mechanize to parse emails, which are rendered using JavaScript

I want to parse email addresses which are rendered this way: <p class="email"> "Email: " <script type="text/javascript"><!-- ...
0
votes
1answer
123 views

Rails: printing a list to a view using Mechanize

Hopefully this is a basic rails question. I'm just learning the broad strokes. I am using rails 3.2.8 with Mechanize 2.5.1 to screen scrape and I'm using Mechanize's basic tutorial model for ...
0
votes
2answers
128 views

extracting runs of text with Mechanize/Nokogiri

Is there a sensible way to extract each run of text in a Mechanize-parsed HTML document, so that (for example): <p>Here is <b>some</b> text<p> is broken into three elements: ...
0
votes
2answers
178 views

Clicking image with mechanize

clicking a text agent.click(page.link_with(:text => 'some_text') with mechainze is piece of cake. How to click an image with mechanize?
1
vote
1answer
100 views

writing a caching version of Mechanize

I'd like a caching version of Mechanize. The idea is that #get(uri...) checks to see if that uri has been previously fetched, and if so, fetch the response from the cache rather than hitting the web. ...
1
vote
1answer
143 views

Rails 3: Choose and run a Mechanize script from inside Rails action.

My application scrapes information from various sites using Mechanize. Naturally, each site requires custom Mechanize code. Each site is stored in my database, including the url to scrape and the ...
2
votes
2answers
665 views

Mechanize getting stuck on Javascript redirect page

I am using Mechanize and Nokogiri in my Ruby on Rails application to scrape our local printers administration panel to retrieve the number of printed pages in the printers lifetime. I have the ...
0
votes
1answer
399 views

Parsing with Ruby Mechanize

Im trying to parse a website using the Mechanize Gem. So far this is what I have: page = agent.get("http://www.greatgiftsformen.com/price-range-under-c-131_142.html?page=all") ...
1
vote
2answers
151 views

Mechanize rake tasks works on some servers but not others?

I'm not sure if this should be asked on ServerFault or here as it's a server problem that's specific to Mechanize and Nokogiri in a Rails 3.2.3 application. I have a rake task that scrapes a Latitude ...
0
votes
1answer
122 views

Mechanize for bing and yahoo search engine

How can we implement Mechanize for bing and yahoo search engine? For google implementation seems to be far simple @agent = Mechanize.new page = @agent.get('http://www.google.com') google_form = ...
0
votes
1answer
735 views

Rescue - NoMethodError — undefined method log for brassring class

I am trying hard to send the below code as a background job, while bumping into one or another error in time to time, my app/workers/brassring.rb is require File.dirname(__FILE__)+"/base_parser" ...
0
votes
2answers
577 views

(Rails) Can't get Mechanize to correctly read a web xml file

I have to read xml files that are accessibles through http with authentication. That's why I use mechanize. My problem is that I can't get mechanize to recognize these XML files so I can use .find ...
1
vote
2answers
307 views

How to parse a scraped JSON string

I need to grab the values of a JSON string stored within a function in a script tag like this: <script type="text/javascript"> my.function("bar", {"foo1": false, "foo2": true, "foo3": ...
1
vote
1answer
531 views

Mechanize - Simpliest way to check if page have been updated?

What is the simpiest solution with Mechanize to see if a page have been updated? I was thinking about create a table named pages. That would have: pagename - varchar page - text pageupdated - ...
0
votes
1answer
353 views

issue in parsing nokogiri element?

I am using Mechanize gem to parse html content. Firing this on terminal, agent.get("http://www.example.com/").search(".sidebar-deal-excerpt").first gives me this: ...
11
votes
1answer
4k views

How to set custom user-agent for Mechanize in Rails

I know you have a set of pre-defined aliases you can use by setting agent.user_agent_alias = 'Linux Mozilla' for instance, but what if I want to set my own user agent, as I'm writing a web crawler and ...
0
votes
0answers
1k views

Rails 3 Mechanize - SocketError: getaddrinfo: Host or name not known

I am using mechanize and i get this error. Can someone please help me. I have set meta refresh to true. Error log: SocketError: getaddrinfo: Host or name not known form ...