A library for automated web browsing originally developed for Perl, there are now also Python and Ruby implementations.

learn more… | top users | synonyms

0
votes
0answers
7 views

VCR auto-rerecord not rerecording after first interval

I have a problem with auto rerecording of cassettes in vcr This is my config: VCR.configure do |c| c.cassette_library_dir = 'spec/support/vcr_cassettes' c.hook_into :fakeweb end and the call: ...
0
votes
0answers
22 views

ruby gem mechanize for in `fetch': 405 => Net::HTTPMethodNotAllowed

I'm using the ruby's Mechanize gem to login the website.Here comes my problem: require 'rubygems' require 'mechanize' agent = Mechanize.new page = agent.get('http://mail.163.com/') form = ...
1
vote
1answer
25 views

Python, “Out of memory” error while working with mechanize

I am trying to run this program, but after awhile I am getting "Out of memory" error. Somehow I need to free some memory and I don't know how to do it in Python. Can anyone help me please? Many ...
-1
votes
2answers
35 views

Extract data from an HTML table [closed]

I'm learning Nokogiri in the mechanize gem, and I'm having trouble figuring out the right selector to use to build an array from an html table. Here's the HTML table I need to extract data from: ...
0
votes
1answer
14 views

capture http calls and headers in python

We are testing videos in our website, and in order to play it should authenticate the user, get the authorization for the device he is playing and so on, check his entitlements etc., we have many ...
1
vote
0answers
44 views

Perl mechanize script no form defined

I'm getting an error No form defined at cqSubmitter.pl at line 33 which is the second set_fields method. Other times I get an Error POSTing http://micron.com Internal Server Error at line 39 , which ...
1
vote
1answer
45 views

Retrieving HTML form submission in Python when there is a loading page

I'm trying to automate a search on the conserved domain database (CDD) - http://www.ncbi.nlm.nih.gov/Structure/cdd/wrpsb.cgi with python where I submit content to a HTML form. The problem is that once ...
1
vote
1answer
6 views

changing value of hidden input tags using Browser from mechanize in python

I am working on a web-scraping project. I am using Browser from mechanize in python. There is a form with a few hidden input elements. I want to change the value in these hidden elements and then ...
1
vote
0answers
18 views

Calling js function using Browser from mechanize in python

I am working on a web-scraping project. I am using Browser from mechanize in python. I need to call a JavaScript function with two arguments. The arguments are known. __doPostBack(arg1,arg2) ...
1
vote
3answers
35 views

NoMethodError: ruby gem mechanize undefined method 'q= '

I'm trying to build a webscraping program for Amazon, but I'm getting tripped up on the very first step. I wrote my code like this, to just start to poke around and access Amazon and prettypage so I ...
0
votes
1answer
15 views

Rails 3 - Log into another site and keep cookie in session

I'm putting together a small app which will allow a user to log into a semi-popular social networking site that doesn't have a sufficient API, so I'm using the mechanize gem to automate a few ...
1
vote
0answers
28 views

Installed Mechanize, but Python can't find module

I installed mechanize into a directory, using the following: sudo easy_install --always-unzip mechanize Searching for mechanize Best match: mechanize 0.2.5 Processing mechanize-0.2.5-py2.7.egg ...
0
votes
1answer
26 views

Aptana Python 2.7 issues

I pulled a script from the net to see if everything was working fine before I start programming. I'm a noob and cannot figure out what is going on. I installed easy_install to smooth things, ...
0
votes
0answers
35 views

Is it possible to perform browser automation of a hidden javascript form with selenium (ruby bindings prefered)

I am about to dive into selenium, but before i would like to ask wether what i want to do is actually possible or impossible. The case is a NGO that some time ago had a website app done for free, ...
0
votes
1answer
43 views

Tumblr Login Script With Mechanize

I'm trying to make a ruby script using Mechanize, so I can login into Tumblr. I have the following script: require 'rubygems' require 'mechanize' def get_page link agent = Mechanize.new page ...
0
votes
2answers
57 views

How to fill html form and scrape from a website? [closed]

I am working on a school project.I want to build a Andriod app but before this I want to scrape some data from 220.225.101.27/MPLogin/eSewa/VehicleSearch.aspx and have to save in my database. When you ...
-1
votes
0answers
11 views

fill a form automatically with pythons mechanize

Heho, I want to fill a bioinformatic web tool automatically. Just because its faster to run every input for its own, than to run all together. The webtool : ...
3
votes
2answers
27 views

Login using Mechanize gem

My code is this require 'mechanize' obj=Mechanize.new a.get("http://cafedepoca.com/submit_data?name=test&email=test@mail.com&pass=mypassword&prof_type=30&api_key=mykey") do |d| ...
0
votes
0answers
35 views

How can I rescue a Errno::ECONNRESET

I have a script that spiders a website, its based on Mechanize and seems to be working great except for what seems like an error I can't catch. 'Errno::ECONNRESET' This seems to reset the connection ...
1
vote
0answers
56 views

Python: Output of beautifulsoup has wrong encoding

I run in an encoding Problem, when a response is put in beautifulsoup. The readible-output of the response is formated in a proper way like Artikelstandort: Österreich, but after running beautifulsoup ...
1
vote
0answers
30 views

Python request login is not working

I am trying to post a request to log in to a website using the Requests module in Python but its not really working. I need to change stuff automaticaly in iomega home media network. Here is the login ...
3
votes
1answer
55 views

Mechanize & Sinatra conflict

I've writter a simple web crawler using Mechanize as a command-line utility. Then I decided to create web app with Sinatra, but got stuck with this error when trying to run the local webserver: ...
0
votes
1answer
21 views

Mechanize converts - char to –

I am using Mechanize to read a web page at http://www.daz3d.com/pirates-black-pearl. The page seems to read OK, but for some reason some characters are translated differently. For example, there is ...
1
vote
1answer
51 views

Mechanize throwing “bad argument (expected URI object or URI string)” using user_agent_alias

I'm trying to fetch images from Twitter but it crashes if I use user_agent_alias. I need to specify the user agent. But why it happens using agent alias? Is that normal? Try yourself with and without ...
0
votes
0answers
32 views

Can mechanize (python) deal with HTTPS?

I learning form filling through mechanize. I used the code : import mechanize abc = mechanize.Browser() abc.set_handle_robots(False) ua = ' Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:16.0) ...
1
vote
3answers
99 views

Perl mechanize print HTML form names

I'm trying to automate hotmail login. How can I find what the appropriate fields are? When I print the forms I just get a bunch of hex information. what's the correct method and how is it used? use ...
1
vote
0answers
16 views

Python - sockispy with mechanize (without monkeypatching)

I want to know if there is a way to get mechanize.Browser to use a socks proxy (tor) without having to do this. import socks, socket socks.setdefaultproxy(socks.PROXY_TYPE_SOCKS5, "127.0.0.1", port) ...
3
votes
1answer
58 views

Mechanize cookie_jar not saving session tokens

I'm using Mechanize to scrape a password-protected website upon user's request. I'm trying to decouple login and search functionality by running a Rake task that logs into the site and saves the ...
0
votes
0answers
33 views

PhantomJS to get infos from facebook's ad planner

I would like to do a script that automatically gets some numbers from https://www.facebook.com/ads/create/ once a week. For example the number of facebook users of a certain country. Nothing really ...
0
votes
0answers
45 views

Python Mechanize back() - Slow, refresh page? Is there a way to use cache?

Hello fellow programmers. I'm trying to automate a site used for buying. The buying page loads very slowly. After loaded, it is queried using an ajax call. What I want to do is load the page, get the ...
1
vote
1answer
66 views

how to login to a website with python and mechanize

i'm trying to log in to the website http://www.magickartenmarkt.de and do some analyzing in the member-area (https://www.magickartenmarkt.de/?mainPage=showWants). I saw other examples for this, but i ...
1
vote
1answer
50 views

Downloading files in a loop with Python mechanize

I am having trouble downloading multiple files in a loop with Python mechanize. I am also utilizing Beautiful Soup 4. The documentation for either package does not seem to have the answers. Here is ...
0
votes
0answers
38 views

easier way of Getting all possible search results from a database using Perl?

Ok so I am using the WWW::Mechanize module in Perl to try and get an entire website copied onto my local machine (also incorporating HTTrack to do the actual mirroring). My problem is that, a list of ...
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
33 views

Entering into form with Mechanize

Im writing a smaller part of a larger program that is using mechanize to input a YouTube URL into a form but i cant get it to work Im using the first form on the page nr=0 but i don't what to put in ...
1
vote
0answers
31 views

Handling gzipped web content with WWW::Mechanize/::GZip

The question is simple, how to handle content that is gzipped. And not only handle that content but fill in forms and do all the stuff that you'd normally do with WWW::Mechanize. I'm trying to do a ...
0
votes
0answers
41 views

HTML form has one javascript generated radio button. Is there a way around this using mechanize?

This form, for whatever reason, uses javascript's document.write to draw the radio buttons on the page, and I can't figure out how to circumvent it. After some sleuthing around here and on Google, ...
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
1answer
41 views

How to save file downloaded by button click with Mechanize

I'm trying to use Mechanize to simulate clicking a button on a web page, which then would initiate a file download in a browser. This is a snippet of my code form = page.forms.first # => ...
1
vote
1answer
38 views

100% unending CPU usage fetching SSL page without cert

Using Mechanize 2.6.0 on Ruby 1.9.3 I'm trying to fetch a web page over HTTPS from Windows 7x64. When I attempt to get() the URL the CPU usage goes to 100% and the method never returns: require ...
0
votes
2answers
89 views

How do I download a web page into a single file from a specified URL?

I'm trying to scrape web pages. I want to download a web page by providing its URL and save it for offline reading with all its images. I can't manage to do that with wget since it creates many ...
1
vote
2answers
86 views

How to send JavaScript and Cookies Enabled in Scrapy?

I am scraping a website using Scrapy which require cooking and java-script to be enabled. I don't think I will have to actually process javascript. All I need is to pretend as if javascript is ...
0
votes
1answer
23 views

Unable to download website's contents using mechanize

I got a python script from here to download web contents from a course website: from mechanize import Browser b = Browser() b.open("https://wiki.engr.illinois.edu/display/cs498cc/Home") ...
1
vote
2answers
53 views

Scraping a web page as you manually navigate

Is there a way, using some library or method, to scrape a webpage in real time as a user navigates it manually? Most scrapers I know of such as python mechanize create a browser object that emulates a ...
0
votes
2answers
60 views

Is there a simple way to have Mechanize get all the components of a webpage?

It's my understanding that when I do: agent = Mechanize.New page = agent.get("http://www.stackoverflow.com/") Mechanize will make an HTTP GET request for the text/html. However when I navigate to a ...
1
vote
2answers
177 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
2answers
117 views

Why two type result for my python script?

i have script like this import mechanize url = "http://www.globalhide.com/browse.php?u=u=http://www.whoisxmlapi.com/whoisserver/WhoisService?domainName=google.com" br = mechanize.Browser() ...
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
1answer
75 views

mechanize checkbox control not working python

I'm trying to delete over 2000 spam users of a wikisite, so I used mechanize and user merge and delete (mediawiki extension). the problem I'm encountering is that for deleting, mechanize has to tick a ...
0
votes
1answer
155 views

How to login with mechanize with an jquery ajax submit form? (python)

i'm having the following problem logging in. The problem is that the site is handling the form with jQuery and ajax in this script: function form_login() { if($('#main form ...

1 2 3 4 5 23