A library for automated web browsing originally developed for Perl, there are now also Python and Ruby implementations.
0
votes
0answers
12 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
2answers
47 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
8 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)
...
1
vote
1answer
24 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
17 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
25 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
41 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
26 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
34 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
23 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
26 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
24 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
29 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
32 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
27 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
27 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
71 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
51 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
19 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
45 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
48 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
108 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
113 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
32 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
63 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
94 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 ...
0
votes
1answer
43 views
Python Downloading a file without having a direct link on mechanize
After i connect to a website and get the neccessary url's at the last one the downloading automatically triggers and chrome starts to download the file.
Howewer in mechanize this doesnt seems to ...
0
votes
2answers
31 views
Downloading files in python in HTTP/1.0
I am using the mechanize library in python to download large files. I am using mechanize to retrieve data in a form .
The problem with downloading too many files simultaneously using python is that ...
0
votes
0answers
35 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 ...
0
votes
1answer
24 views
Does set_visible in perl WWW:mechanize alter the page content
I am calling set_visible and the return value is non-zero. But when I print the content, it is the same as the default. Is this the intended value.
Also, if I have javascript that will change another ...
0
votes
1answer
27 views
Switching ip while parsing the site with ruby mechanize
Is there any way to change, or hide send request ip, while i'm parsing a website with my ruby mechanize program? To avoid bun from site server.
I've seen sites changing ip-adresses, like this ...
0
votes
2answers
55 views
Perl mechanize multiple webpages in parallel
I have to fill out forms on multiple webpages. I am trying to fetch the data, parse the html into text, and store it in a single file. Every web form has different fields to be filled out; this is the ...
0
votes
1answer
58 views
Trouble automating form login with Python Mechanize
I have been trying to automate a site login that requires cookies. I found an answer on this site, and replied to it, but I had problems logging in becasue I forgot I had an account here already. I ...
1
vote
1answer
39 views
Python Mechanize Submit Button on NIH Website
I'm using mechanize on python 2.7.3. I'm looking for help on hitting the submit button on NIH's gene website.
The button is an actual button element surrounded by divs and not inside any form field.
...
-1
votes
1answer
57 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
0answers
41 views
How to fetch div inside of form
I want to fetch live football scores from a website.This scores are inside a div which is inside a live form. I tried to get them by using python mechanize module , set header and browser options.
...
0
votes
0answers
71 views
Perl mechanize difficulty in output
I have one more question to ask .This is my code kindly go to website and tell me how can i fetch the excel file from my code . This print command giving me an html page but i want the excel link.
...
0
votes
1answer
86 views
adding directory to sys.path /PYTHONPATH
I am trying to import a module from a particular directory.
The problem is that if I use sys.path.append(mod_directory) to append the path and then open the python interpreter, the directory ...
0
votes
2answers
66 views
Way around HTTP 403 with python
im makeing a program that uses google to search but i cant becuase of the HTTP error 403 is there any way around it or anything im using mechanize to browse here is my code
from mechanize import ...
0
votes
3answers
31 views
Howto use WWW::Mechanize to access pages split by drop-down list
I have list of genes to download from the following links.
the problem that it's separated into 60 pages, under the drop-down list.
...
0
votes
1answer
41 views
Input into site using Mechanize (Python)
im trying to make a dictionary program using dictionary.com for the source but i cant find the name of the search box in the source code
from mechanize import Browser
inp = raw_input("Enter Word: ...
0
votes
1answer
44 views
Using Machanize to access password protected site
Im trying to get into a site using machanize but when i run my script its still just giving me the source for the homepage and not for the actual site
here is the code
from mechanize import Browser
...
0
votes
0answers
53 views
Python script to submit javascript form
I am putting together a script to auto submit a form for me. I got everything to work but I can't get it to submit the form. I think it has something to do with the fact that each field has:
...
0
votes
0answers
16 views
How extract search result from blekko using Mechanize in Python
I have code like this.
import mechanize
br = mechanize.Browser()
br.set_handle_robots(False)
br.addheaders = [('user.agent','Firefox')]
response = ...
1
vote
0answers
178 views
Perl WWW::Mechanize - Content-Type: application/pdf
The problem is: I need WWW::Mechanize to download some PDF from a web page. I have logged succesfuly. (I have tested that.) Then I grabbed the link of the PDF target. When I pasted this link into my ...
0
votes
1answer
42 views
Creating a custom form for mechanize
I have a form on a website that is not directly selectable (as it is embedded in a javascript). So selecting it via mechanize browser object is not possible. What i want to do is to create a form just ...
0
votes
1answer
43 views
mechanize._mechanize.FormNotFoundError: no form matching name 'q'
Can anyone help me get this form selection correct?
Trying to get a crawl of google, I get the error:
mechanize._mechanize.FormNotFoundError: no form matching name 'q'
Unusual, since I have seen ...
1
vote
1answer
93 views
Can't automate login using python mechanize (must “activate” specific browser)
I seem to have difficulty logging into a website, which requires browser authenticaton.
What happens is when you first log on, the website redirects you to a page saying "We have sent an email to your ...
0
votes
0answers
69 views
Filling a form using a python script
I'm trying to write a python script that will fill a form on a website, send it, and after sending I want to search for a keyword on the resulting webpage.
More specifically, the form is: ...
0
votes
0answers
36 views
Mechanize Python and Google Analytics
When I open a website with mechanize:
br.open('http://website.com')
how would this appear on Google Analytics? I understand that Analytics gives the browser a __utmb cookie that expires after 30 ...




