Tagged Questions
1
vote
0answers
9 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
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
34 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, ...
1
vote
1answer
272 views
Mechanize: submitting form but not loading new page to see results
Okay, so I'm starting to get a little frustrated. I've spent most of a day trying to figure out why my script is not working - both on github and here. It should be fairly simple. Mechanize load a ...
0
votes
3answers
73 views
Web Scraping Returning Empty String
I wrote some code to return and display the five most recent posts on this website. Yet when I run the code using a for loop, an empty string is returned. The code is below:
require 'rubygems'
...
3
votes
1answer
218 views
How do I scrape URLs from a JavaScript 'onclick window.open' event?
I am trying to scrape URLs from a page that uses JavaScript. Instead of having links on the page, they created onClick events for a number of table rows, whereby, when you click the row, it takes you ...
2
votes
0answers
277 views
Python & mechanize: How to scrape through pages in a row?
my problem is as follows:
I'm trying to write a scraper that runs through the order process of an airline ticketing website. So I want to scrape a couple of pages that depend on the results of the ...
1
vote
0answers
107 views
mechanize keeps giving URLErrors
I'm automating some stuff with mechanize. I have a working program that logs into a site and goes to a page while logged in. However, sometimes I just get URLErrors stating the connection has timed ...
0
votes
1answer
201 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
2answers
181 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
884 views
Python Mechanize.Browser.Open(url) Status Code
I recently moved from perl to python and am updating some of my scripts which used perls WWW::Mechanize to use python mechanize module.
All good so far but I cant get find the HTTP Status code ...
0
votes
2answers
162 views
BeautifulSoup: Finding a specific URL in html and printing
Ok, so I have this html-page (full of different urls), where I want to grab a single url and print it.
The webpage is: https://bdkv2.borger.dk/foa/Sider/default.aspx?fk=22&foaid=11523251
I want ...
-1
votes
3answers
199 views
Virtual screen scraping with Perl [closed]
Is it possible to do virtual screen scraping in Perl, or Python? Suppose I have a login page, where once I enter the username or password, it takes me to another authentication page where I have to ...
0
votes
2answers
243 views
How to block visits from Ruby Mechanize Gem?
I'm starting to use Mechanize gem for Ruby and I wonder if there is anyway a web server can detect and block activities from Mechanize agent?
If yes, what's the code or steps to block Mechanize to ...
0
votes
1answer
153 views
Mechanize parsing error
I started to use mechanize in ruby recently and it was working perfectly.
Today I tried to get a page but for some reason the input fields are not taken, please refer to the code below:
agent = ...
1
vote
1answer
160 views
form submitting with mechanize and Python
I'm trying to scrap a website that requires to submit two forms : a first one to loggin and a second one to specify my research.
I'm using Python and the mechanize package.
No problem with the first ...
0
votes
1answer
243 views
Python Mechanize for form with options populated by Javascript
I'm trying to use mechanize to grab prices for New York's metro-north railroad from this site: http://as0.mta.info/mnr/fares/choosestation.cfm
The problem is that when you select the first option, ...
0
votes
0answers
339 views
How to select a form with xpath in Mechanize/Python?
I am visiting a stateful web service with mechanize/Python. It confirm the referrer of a request and my browser's cookie.
Since most forms of the site don't have name attribute, I'm tired to select ...
3
votes
3answers
237 views
How do I scrape something after JS has changed the DOM?
I'm using Mechanize, although I'm open to Nokogiri if Mechanize can't do it.
I'd like to scrape the page after all the scripts have loaded as opposed to beforehand.
How might I do this?
0
votes
1answer
283 views
ASPX scraping with Mechanize: Can't retrieve form?
I'm trying to scrape an .aspx web page using Python Mechanize. But I keep getting a funny ParseError: unexpected '[' char in declaration error, even when I manually remove the DTD.
Here is my code ...
0
votes
1answer
629 views
python mechanize: create and submit a form
I'm interfacing a website with mechanize. The website creates a custom form using javascript and submits it after creating it. How can I do the same with mechanize, namely: create a form, add the ...
0
votes
0answers
399 views
100 result per page: Google Scraping in Ruby
How can I increase number of google search results per page? I am scraping google using mechanize gem through following code.
def google_search(query)
page = @agent.get('http://www.google.com')
...
0
votes
0answers
77 views
adding button to a form in Ruby Mechanize
I have a poorly structured HTML which i have to parse with mechnize. There is a submit button which is outside of <form> element, i want to add this button into my form. I have seen the ...
1
vote
1answer
119 views
Parsing poorl structured HTML document with Ruby Mechanize
I have a to parse a poorly structured HTML document with Ruby mechanize. There 2 forms in the page but there are few submit type buttons that does not comes under any form element, therefor i have not ...
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 = ...
2
votes
2answers
306 views
Screen scrape HTML head content?
I am comfortable scraping HTML content by using the CSS elements as a method of identifying the section of content that I want, but I need to scrape the content of the section of a webpage:
...
1
vote
1answer
572 views
Using Python mechanize on specific form with javascript
I'm trying to use the Python mechanize module to retrieve data through this form: http://archive.stsci.edu/kepler/data_search/search.php?form=fuf
The thing I'm having trouble with is "Output Columns" ...
1
vote
1answer
951 views
Raw HTML vs. DOM scraping in python using mechanize and beautiful soup
I am attempting to write a program that, as an example, will scrape the top price off of this web page:
http://www.kayak.com/#/flights/JFK-PAR/2012-06-01/2012-07-01/1adults
First, I am easily able ...
0
votes
3answers
260 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
136 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 = ...
1
vote
1answer
281 views
Mechanize response returns no content
I'm using Mechanize in Python to perform some web scraping. Most of the website works but one particular page doesn't return any Content or Response.
My settings are
self._browser = ...
1
vote
1answer
124 views
How can I use Mechanize to scrape an HP Printer Status page?
The status page looks like this:
http://h20000.www2.hp.com/bc/docs/support/SupportDocument/c00002742/c00004781.gif
You see the text underneath the Device Status title? That's what I want to scrape.
...
3
votes
1answer
257 views
Screen scraping: Automating a vim script
In vim, I loaded a series of web pages (one at a time) into a vim buffer (using the vim netrw plugin) and then parsed the html (using the vim elinks plugin). All good. I then wrote a series of vim ...
0
votes
1answer
96 views
Grabbing a .jsp generated PNG in Python
I am trying to grab a PNG image which is being dynamically generated with JSP in a web service.
I have tried visiting the web page it is contained in and grabbing the image src attribute; but the ...
0
votes
1answer
111 views
Using Python to automate the use of online file converter
How do I use Python to automate the file conversion of SBML (XML) files, stored locally, using a web-based file converter located here:
http://www.ebi.ac.uk/compneur-srv/converters/converters
Here ...
3
votes
1answer
1k views
How to select a Radio Button using Mechanize in Ruby?
i am building a crawler and i am using Mechanize. I wish to click on a radio button. How do i do that ?
Like for example there are two radio buttons say 'A' and 'B'.
The website automatically ...
1
vote
1answer
256 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
1answer
256 views
Parse and interact with obfuscated javascript
I'm trying to interact with a HTML 4.0 website which uses heavily obfuscated javascript to hide the regular HTML elements. What I want to do is to fill out a form and read the returned results, and ...
2
votes
1answer
706 views
Screen scraping Akamai's control panel using Mechanize for Ruby - Cookies Issue
I am attempting to screen scrape some data from Akamai's control panel, but I am having trouble while logging in to the page via mechanize for Ruby.
require 'rubygems'
require 'mechanize'
agent = ...
1
vote
1answer
193 views
Fill in textarea within <noscripts> tags with python mechanize
I'm having a problem with mechanize registering a text area field from within a tag.
Example URL: http://www.gegononta.gr/register.php
Code:
mech = mechanize.Browser()
url = ...
2
votes
1answer
1k views
Maintaining cookies between Mechanize requests
I'm trying to use the Ruby version of Mechanize to extract my employer's tickets from a ticket management system that we're moving away from that does not supply an API.
Problem is, it seems ...
0
votes
1answer
569 views
How to use Python mechanize to save a page inlcuding images on the page
So I understand that mechanize can make python script behave exactly like a browser.
With a browser, I can save a loaded page into local disk, including the images in the page
How can I do this with ...
0
votes
2answers
152 views
python mechanize problem with selectcontrol
basically one of the select controls has a few "options" in which to choose from
if i use:
for t in br.forms():
print t
the output i get is
`SelectControl(ctl00$cph2$ddlSchool=[*2])
...
0
votes
2answers
299 views
How to insert a string to a text field using mechanize in ruby?
I know is a very simple question but I've been stuck for an hour and I just can't understand how this works.
I need to scrape some stuff from my school's library so I need to insert 'CE' to a text ...
1
vote
2answers
2k views
Using Ruby with Mechanize to log into a website
I need to scrape data from a site, but it requires my login first. I've been using hpricot to successfully scrape other sites, but I'm new to using mechanize, and I'm truly baffled by how to work it.
...
1
vote
1answer
714 views
How to navigate to and enter input in nested frame/form with mechanize
I want to enter some text (login, password) inside a page with frames. The structure is something like:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>Whatever</head>
...
1
vote
1answer
859 views
Scraping ASP.net website: Need to Page through a Gridview using Python Mechanize
I'm trying to scrape an asp.net page where I need to page through the items a list of items that are in a gridview control. I've never used asp.net but have been searching the Net for pointers but now ...
2
votes
2answers
350 views
Parsing Malformed HTML with Ruby Mechanize
I am fairly new to using mechanize, and even Ruby in general. I am using it to navigate a site which has badly malformed HTML. In particular, I have a page which has checkboxes outside of a form ...
0
votes
2answers
910 views
POST request capture with Mechanize
I'm trying to use Mechanize to capture a POST request which is not possible via a form, because the form is inside an iframe that prevents loading directly via javascript.
The HTTP Headers are the ...
3
votes
1answer
2k views
How to set value of hidden form in Mechanize/Python?
I'm scraping a site that uses a hidden form as a means of a countermeasure against exactly what I'm trying to do. This form:
<input style="width: 2px; height: 25px" type="hidden" size="1" ...
