A library for automated web browsing originally developed for Perl, there are now also Python and Ruby implementations.
0
votes
1answer
46 views
why does the website know i am using a bot to check my ip
I use mechanize to create a virtual browser
br = mechanize.Browser()
# set cookies
cookies = cookielib.LWPCookieJar()
br.set_cookiejar(cookies)
# browser ...
0
votes
1answer
53 views
Ruby and Mechanize to parse html for content?
So I am a complete noob to ruby and I am trying to write a code that would take a user inputed URL and print that pages html content to the screen. I the goal is to eventual create script that would ...
1
vote
2answers
74 views
Python submit post data using mechanize
The url that i have to submit to the server looks like this:
www.mysite.com/manager.php?checkbox%5B%5D=5&checkbox%5B%5D=4&checkbox%5B%5D=57&self=19&submit=Go%21
The post data I put ...
0
votes
0answers
16 views
Submit a value from a dropdown menu using Python Mechanize [duplicate]
How can a select a value from a dropdown menu and submit it? I want to use Python mechanize and avoid the error "mechanize._form.ParseError: nested FORMs"
What's the simpliest way to do?
The drop ...
0
votes
1answer
53 views
Python post form with button javascript
I try to post ads in a website.
We have 2 forms ,the first form ask me information of ads and is ok i submit them but in second form, to submit i have a button (input) with javacript,
...
0
votes
0answers
19 views
Why did positioning with BeautifulSoap doesnt work? [duplicate]
I'm using Python Mechanize to do automated jobs. Here I want to position my self on the first form tag and from a dropdown menu to select a value and submit:
resp = br.open(url_manager)
soup = ...
0
votes
0answers
50 views
How can i select a value from dropdown menu which is found in a double form tag with Python mechanize?
I'm trying to select a value from a second form tag and submitting:
<form action="manager.php" method="GET">
.....
<form action="manager.php" method="post">.
====here i need to select a ...
0
votes
0answers
47 views
Sublime Text Flake8 lint error on Mechanize which does not appear when running flake8 by hand
I use mechanize library for a small python project.
Why does Sublime Text 2 (with Flake8Lint) shows me that there is no such member select_form() in browser.
I have checked _mechanize.py and there it ...
0
votes
1answer
70 views
Python mechanize checkboxes with dropdown submit
I have an email client. I check the "checkboxes" of emails that I need do something (move,detele, egg) like this using python mechanize:
br.open(login_url)
br.open(url_1)
br.select_form(nr=0)
for i ...
0
votes
1answer
63 views
Python mechanize checkboxes
I want to do this using Python Mechanize.
This is HTML page:
<form action="config.php" method="POST">
<div>
<img src="/images/delete1.png" />
...
0
votes
1answer
52 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
40 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
...
3
votes
1answer
68 views
Web scraping with Scheme
Is there a good library/package to do web scraping using Scheme (preferably Racket)?
e.g. a Scheme equivalent of mechanize?
-4
votes
1answer
44 views
Python Mechanize “Password Control <NONE>” [closed]
I have this form how i can submit()
<loginFrm POST http://10.10.10.251/goform/login application/x-www-form-urlencoded
<TextControl(user=)>
<PasswordControl(<None>=)>
...
0
votes
0answers
35 views
Ruby Tool (recorder, proxy) to generate Mechanize code
I'm looking for a tool to record http requests and generate ruby mechanize code.
The idea is to navigate in the browser through a proxy and all requests are recorded as mechanize code.
Th only ...
0
votes
2answers
50 views
Which button should I click?
I am trying to crawl a website which loads pages if i click "Show more products". I am using perl mechanize. Here is the content I got from the website. What should I specify in click_button() so that ...
2
votes
0answers
84 views
Webscraping with Python
I'm using this website (http://gasbuddy.com/) to collect gasoline prices. Basically, I want to write a python script that will input zip codes into the search box at the top of the page, and then ...
1
vote
1answer
24 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 ...
0
votes
1answer
35 views
Python Mechanize file upload keeps uploading 1kb files
This is how I initialize my mechanize browsers
# Browser
br = mechanize.Browser()
# Cookie Jar
cj = cookielib.LWPCookieJar()
br.set_cookiejar(cj)
# Browser options
br.set_handle_equiv(True)
...
0
votes
1answer
25 views
Serch for specific information in response().read()
I'm trying to find out if form was submitted correctly using Mechanize Python library.
How can I search for specific text in returned website? For example I want to check if website contain text: ...
5
votes
1answer
102 views
How do I access the StackExchange API authenticated methods from a perl script?
I'm using WWW::Mechanize. For the methods that do not require authentication, I get those as I would any other url, and then use the perl JSON module to parse out whatever data I want:
my $response = ...
0
votes
1answer
122 views
Python mechanize - form submission - selecting the correct form
Trying to use Python mechanize to log in to a webpage. Since I have a problem with finding the correct form, instead of posting the URL (which the code might change) I will copy some of the code here ...
8
votes
2answers
329 views
Extremely strange Web-Scraping issue: Post request not behaving as expected
I'm attempting to programmatically submit some data to a form on our company's admin page rather than doing it by hand.
I've written numerous other tools which scrape this website and manipulate ...
0
votes
1answer
51 views
Upload file with ruby mechanize
File upload does not work in the form
form.file_upload_with(:name => 'image[1]').file_name = '/tmp/image.jpg'
form.submit
Example out of date: ...
0
votes
3answers
80 views
Finding next input element using Mechanize?
Using Mechanize, is it possible to find a phrase in the HTML of a page, for example, "email", and find the next <input* after that, and fill in that input field, and only that field?
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
0answers
20 views
Python Mechanize skips the first form
This is weird, I've been weeks trying understand what I'm doing bad, with python and mechanize library: it skips the first form on a concrete page, why?
I've explained it here with reproducible code:
...
2
votes
1answer
216 views
How to get Cucumber/Capybara/Mechanize to work against external non-rails site
I'm trying to do BDD on a Google App Script. I understand that in principle I should be able to use some combination of Cucumber, Capybara and Mechanize to do BDD on a non-rails external site. In ...
0
votes
1answer
73 views
How do you view the request headers that mechanize is using?
I attempting to submit some data to a from programatically. I'm having a small issue where the server is "not liking" what I'm sending it. Frustratingly, there is no error messages, or anything that ...
0
votes
0answers
33 views
How to imitate scroll down on a webpage using ruby mechanize?
I have a web page, with ajax effect - the new elements apperars, when the user scroll down the page. I want to parse all this elements, with ruby mechanize. Any suggesions?
0
votes
1answer
86 views
logging into https site using python mechanize library
I have the following code:
import requests
import sys
import urllib2
import re
import mechanize
import cookielib
#import json
#import imp
#print(imp.find_module("requests"))
#print(requests.__file__)
...
1
vote
1answer
75 views
scraping image with mechanize ( ruby )
I'm trying to save image from web_page with mechanize. I use this code:
@current_agent.get( image_url ).save ( save_path )
Error (I think I have a problems with timeout settings):
I, ...
0
votes
0answers
57 views
web scraping using mechanize
The following code I used to download a file, produces damaged file when I run it on windows, while the pdf I get by running the code on ubuntu is readable. Can somebody give me a reason why?
br = ...
1
vote
2answers
140 views
Downloading a image using Python Mechanize
I'm trying to write a Python script to download a image and set it as my wallpaper. Unfortunately, the Mechanize documentation is quite poor. My script is following the link correctly, but I'm having ...
0
votes
1answer
71 views
formating data from Text (.prn) file
I am trying to figure the best way to handle the following data. I am scraping a site and using a Text (.prn) file (a file for printing, this is the file with the data on I want, I think this would ...
0
votes
1answer
32 views
Downloading different language webpage using web python
I am trying to download a webpage (in Russian) using mechanize module in python (My computer uses only English) . I get the following error
UnicodeEncodeError: 'ascii' codec can't encode characters ...
1
vote
0answers
196 views
Facebook Graph Search return proper JSON
I've been using mechanize lately to crawl around the web and do stuff. I decided that I wanted to write some algorithms to graphically show connections between my friends. Each friend will be a node ...
1
vote
3answers
54 views
Using ruby “send” on Nokogiri objects as page.send(a) where a=“at('div.class-name')”
Now, this is my HTML,
<div class = 'div-of-all-names'>
<div class='best-first-name'>
<span itemprop='name'> Alexander </span>
</div>
</div>
I have this ...
0
votes
0answers
17 views
Submitting registration with mechanize does not lead to right page
I am trying to submit a registration for yahoo ...
0
votes
2answers
29 views
Size of data scraped using ruby mechanize
agent = Mechanize.new
url = "---------------------------"
page = agent.get(url)
Now, I want to know the KB(kilobytes) of data that has been used by my internet service provider to scrape that data.
...
1
vote
1answer
89 views
python, mechanize - open a text file with mechanize
I am learning mechanzie. I am trying to open a text file , the link that you would click on says
Text (.prn)
One problem i am having is there is only 1 form on this page and the file is not in the ...
0
votes
2answers
150 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
20 views
How to accept cookie in python mechanize browser
I am trying to create a mechanize browser to fill in a form and submit. The requirement is the mechanize browser must accepting and sending cookie.
br = gaemechanize.Browser()
...
0
votes
0answers
30 views
I'm submitting a form using mechanize with python and it seems to be not working. Where do I need to look?
I'm trying to perform a registration using code that looks somewhat like this:
browser = mechanize.Browser()
browser.open(url)
assert browser.viewing_html()
browser.select_form(nr=0)
...
0
votes
0answers
38 views
gaemechanize2 error: 'module' object has no attribute 'XHTMLCompatibleHeadParser'
I am trying to use gaemechanize2 with GAE and I got the error
'module' object has no attribute 'XHTMLCompatibleHeadParser'
After googling, I found this file
...
0
votes
1answer
110 views
Submitting a form with mechanize HTTP Error 500
This is my first time using mechanize and I'm trying to fill out a form with mechanize
Here are my browser options:
br.set_handle_equiv(True)
br.set_handle_gzip(True)
br.set_handle_redirect(True)
...
0
votes
1answer
43 views
Filling out select control with python mechanize
I'm trying to fill out the registration for a website with python mechanize. Everything is going well but I can't figure out how to do the select controls. For example, if I'm picking my birthday ...
0
votes
0answers
50 views
Migrating writeboards away from Basecamp
So I work for a company that has been using Basecamp Classic pretty much since it was offered to the public. We have 900+ projects on there. But management has become increasingly unhappy with the ...
-1
votes
1answer
34 views
Getting names of files as saved with ruby Mechanize [closed]
I've written a scraper in ruby to download some files files off a website. It works pretty well, however I would like to get the name of the files as they are saved to disk.
For example, if I were ...
0
votes
1answer
33 views
Would like help extracting from model data nested inside javascript text filtered with Mechanize
Using the following:
LowEast = agent.get('https://rs.alarmnet.com/TotalConnectComfort/Device/Control/12345')
puts LowEast.parser.xpath("//script[@type='text/javascript']")
Returns what follows, ...




