Tagged Questions
0
votes
1answer
44 views
Mechanize get content between “div's”
I am using Mechanize gem.
How can i get content between two div's
"<div class='a'></div>content<div class='a'></div>"
Problem is that content is in between p tags.
...
0
votes
1answer
45 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 ...
1
vote
2answers
180 views
Using delayed_job for Mechanize script in Rails (NoMethodError: undefined method for nil:NilClass)
I’m going to preface this by saying I’m a relative beginner, and while I may not understand a lot yet, I am more than willing to learn. I hope you can help with this one, as I have been trying to ...
0
votes
1answer
38 views
How to rescue “sub” errors?
For example, I want to rescue from a Net::HTTP::Persistent::Error, however it has many types:
Net::HTTP::Persistent::Error: too many connection resets (due to end of file reached - EOFError)
...
0
votes
0answers
49 views
Graph API POST to Add App to Page Tab
Very annoying problem here. I'm trying to programmatically add an app to a FB page as a tab.
FB documentation says the following:
"Make a POST call to the page API endpoint //tabs with app_id set ...
-1
votes
1answer
73 views
Mechanize redirect / Nokogiri (noob using mechanize)
I have something that looks like this:
def self.foo
agent = Mechanize.new
form = agent.get("link/to/form/url")
form.form_with(:name => "form_name") do |f|
f.field_with(:name => ...
0
votes
1answer
56 views
How do I submit a form with a particular field?
Need to select and submit a form on a page containing many different forms, which has a hidden field with a particular value.
I know there's form.fields_with() to select form fields, and ...
-1
votes
1answer
57 views
Mechanize Refresh Page
How do I refresh the page in Mechanize (using Ruby)? Sorry couldnt see the answer or anything. I cant do another GET request in this case, just need to refresh the browser.
My code is:
class Scraper
...
1
vote
1answer
31 views
Heroku + Mechanize turns OBJ into a String
So I have an app that uses Mechanize to get a page. Please note the HTTP site I'm trying to parse is a *.TXT file.
In IRB I run a simple program like:
require 'rubygems'
require 'mechanize'
require ...
3
votes
1answer
128 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
179 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
0answers
98 views
Mechanize + Rails + Heroku = Errno::ETIMEDOUT , Completed 500
UPD: SOLVED.
It was just a livejournal unstable work.
Need help with eror.
Completed 500 Internal Server Error in 21016ms
Errno::ETIMEDOUT (Connection timed out - connect(2)):
Code line that ...
1
vote
3answers
163 views
How to get a full URL given a shortened one passed to Nokogiri?
I want to traverse some HTML documents with Nokogiri.
After getting the XML object, I want to have the last URL used by Nokogiri that fetched a document to be part of my JSON response.
def url = ...
0
votes
1answer
79 views
Target an image/javascript link with Mechanize
I'm trying to use Mechanize to click a link with no text, only an image. The href is a Javascript function. Here's the link:
<a href='javascript:nextButton(this.form)'>
<img ...
0
votes
1answer
75 views
Download an image from a website into a CouchDB attachment through Rails without local storage?
I'm trying to scrape some websites and store the images as CouchDB attachments.
In order to expedite the process I don't want to store the images locally at all.
The relevant gems I'm already using ...
0
votes
0answers
105 views
Rails html.erb output formatting - getting a url out of a result and making a link
Basically, the code below works great. I execute a Mechanize crawl through my search.html.erb web page and get proper results on my results.html.erb web page. However, I'm having trouble figuring out ...
0
votes
0answers
55 views
Rails not adding new models to DB via rake script, can't figure out why
The Rake Script
desc "Update departments and classes listing"
task :update_classes => :environment do
require 'rubygems'
require 'mechanize'
require 'nokogiri'
def getSubject(agent, subject)
...
2
votes
2answers
111 views
Automating Interaction with website - Rails
I'm trying to automate logging in and posting some stuff on a website, but I can't use Mechanize since there are many javascript actions involved. I was wondering if there were any other gems/tools to ...
1
vote
1answer
82 views
rails mechanize run through each url in a postgres table
*Edit:
Per my comment below, I guess a better question would be, 'What would the proper way be to have mechanize go through each url and update its name column? (each name would be unique to the url)' ...
0
votes
1answer
146 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 ...
1
vote
0answers
195 views
Intermittent SSL certificate verification failures with mechanize and ruby
I have a Rails 3.2.8 app, with Ruby 1.9.3 on Ubuntu 12.04. It uses mechanize to connect to an https web site.
I am seeing this error intermittently:
SSL_connect returned=1 errno=0 state=SSLv3 read ...
1
vote
2answers
186 views
HTML parsing: How to find the image in the document, which is surrounded by most text?
I am writing a news scraper, which has to determine the main image (thumbnail), given an HTML document of a news article.
In other words, it's basically the same challenge: How does Facebook ...
0
votes
2answers
130 views
button to save current page in rails 3.2
I need to have a button to save the current web site (just like clicking on "Save as"), I created a method in the controller which works great for any external site (like http://www.google.com) but ...
0
votes
0answers
180 views
Order from Amazon with Ruby Mechanize - Bypassing Javascript Hurdles
I'm trying to create a scraper with Mechanize that places an order from Amazon using my affiliate link. The goal is to allow users to place an order on my site which contains products fetched using ...
0
votes
1answer
172 views
Mechanize mass assignment error for HABTM join table
The problem is that I get this error:
ActiveModel::MassAssignmentSecurity::Error: Can't mass-assign protected attributes: amenity_id
when I run this code:
task import_amenities: :environment do
...
0
votes
1answer
208 views
Ruby gem Mechanize
Is it possible to use the render method of a controller to render the content of a Mechanize object? I tried:
def new
a = Mechanize.new
a.get('http://flickr.com/')
render :html => ...
0
votes
4answers
79 views
Delete an instance of class using mechanize in rails
I am using mechanize to deal with a form . I have parsed the form using mechanize and the output comes is as follows:
{forms
#<Mechanize::Form
{name nil}
{method "POST"}
{action ...
3
votes
2answers
133 views
Two different syntax for Ruby Mechanize.get(url) - what is the benefit?
What is the difference between those syntax?
Is there any benefit with the first over the second?
agent = Mechanize.new
# first
agent.get(url) do |page|
work
end
#second
page = agent.get(url)
...
-1
votes
1answer
190 views
select elements and click link if condition
How to write a code that will click links on a webpage with specified conditions:
The script should look into each div.table-row and check if list element (div.domains ul li) in the div contains ...
0
votes
2answers
99 views
Dealing with invalid characters from web scraping
I've written a web scraper to extract a large amount of information from a website using Nokigiri and Mechanize, which outputs a database seed file. Unfortunately, I've discovered there's a lot of ...
0
votes
1answer
442 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
1answer
90 views
xpaths and html parsing using mechanzie
Im using mechanize to parse http://www.hammacher.com/Category/Default.aspx?uq=Gifts-Under-30&all=True
What xpath can I use to get to each href on that page so that each product page can be ...
0
votes
1answer
71 views
ruby regex is using last match to seperate string but should use first
Im parsing the source of a website and Im using this regex:
/page\.php\?id\=([0-9]*)\"\>(.*)\<\/a\>\<\/span\>/.match(self.agent.page.content)
self.agent.page.content contains the ...
1
vote
0answers
209 views
Gem Resque Error - Undefined “method perform” after Overriding it form the super class
First of all Thanks for you all for helping programmers like me with your valuable inputs in solving day to day issues.
This is my first question in stack overflow as I am experiencing this problems ...
0
votes
1answer
151 views
How to set cookie / use mechanize during carrierwave image downloading
I am using carrierwave to download some images. However some sites block access if cookies are not set properly. I want to use Mechanize in place to the open-uri calls so I can do some preparation and ...
0
votes
1answer
785 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
3answers
285 views
how can i get the size or weight from images url?
referring to the previous question methods width and height Mechanize
I would like to know how can I get the size from web page image's with Mechanize.
I have created a method for use like helper ...
0
votes
1answer
141 views
methods width and height Mechanize
I'm using Mechanize for scraping images url then I'm looking http://mechanize.rubyforge.org/Mechanize/Page/Image.html for to know width and height images.
I write in console:
url = ...
0
votes
1answer
168 views
Filter array result with mechanize
I'm getting images from a url with Mechanize with this code!
url = "http://cnn.com"
page = Mechanize.new.get(url)
images = page.images.map{|img| img.url.to_s}
I want to get only, the images that ...
0
votes
2answers
626 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 ...
0
votes
1answer
150 views
Mechanize upload binary data
My rails app is hosted by heroku
I have my file in the database as binary data. i want to upload the file using mechanize
i want to be able to upload using mechanize directly without saving to disk
...
0
votes
1answer
711 views
Handling different classes of 404 errors
I have many classes inheriting the Page class. They share the same update_ended method which tries to update the status when the page ends.
Since these Page classes faces different problems, a mix of ...
0
votes
1answer
236 views
Rails rake task keeps eating more RAM as it runs (crawl websites using mechanize)
I use mechanize gem to crawl websites. I wrote a very simple, one-threaded crawler inside a Rails rake task because I needed to access to Rails models.
The crawler runs just fine, but after watching ...
0
votes
1answer
240 views
keep mechanize page over request boundaries
Im writing a ruby application that can post comments on behalf of the user to a remote blog. My problem is that i have to use the same page in the post method of the controller, to keep the session ...
0
votes
1answer
1k views
Mechanize and SSLError in Ruby
I'm using Mechanize with my ruby script but I can't get around the the well known SQLError.
I'm running on rails with Windows 7 and RailsInstaller.
I want to generate adcrun.ch links with my ruby ...
1
vote
3answers
3k views
Parse html table using Nokogiri and Mechanize
Using the following code I am trying to scrape a call log from our phone provider's web application to enter the info into my Ruby on Rails application.
desc "Import incoming calls"
task ...
1
vote
1answer
261 views
Finding links on page matching HREF pattern
I am trying to interact with a website full of images and want to interact with it by clicking on each image. Each image has a relative url (eg: /image/1000/, image/1023/, etc). The number I assume is ...
1
vote
0answers
152 views
Rails mechanize can't access page that requires logging in
I am trying click a link that appears after I've logged in with Rails + Mechanize, but it returns "Cookie should be enabled". I've checked the cookie in the my Mechanize object ...
0
votes
2answers
119 views
Entering login information for a site that doesn't use forms with Mechanize/Ruby
I need to log in to a site to run some scripts. Mechanize with Nokogiri looks perfect for the task, but I'm having a hard time inputting the login information since the input fields aren't located in ...
1
vote
1answer
549 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 - ...

