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 ...
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 ...
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 ...
1
vote
1answer
92 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
2answers
74 views

Ruby + Mechanize Login Stuck

I'm pretty new to crawling in Ruby, and I'm trying to use the Mechanize gem to login and crawl. For some reason, I can't seem to get the login function to work. Any ideas? Code: require ...
0
votes
0answers
119 views

Submit using python mechanize with input tpe=“image”

I want to click/submit a button which is of type image <input type="image" onclick="javascript:return showhide();" src="IMAGES/login.gif" name="submit"> I tried the following mech = ...
0
votes
1answer
205 views

Unable to access textbox on an HTML form

I can't find the login text box. I can select the form, but i'm not able to find the input text. Can someone help me? I'm trying to login automatically with this script on ...
0
votes
1answer
116 views

Python Mechanize How to Use Cache Password?

I am experimenting with web automization to optimize my duties. There is a site I am trying to access but I keep getting "httperror_seek_wrapper: HTTP Error 401: Unauthorized". I believe the site ...
1
vote
1answer
723 views

Site scraping in perl using WWW::Mechanize

I have used WWW::Mechanize in perl for site scraping application. I have faced some difficulties when I'm going to login to particular site via WWW::Mechanize. I have gone through some examples of ...
1
vote
1answer
250 views

Check if a web page has change which requires login / cookie

I'm using this code that I found online to check a webpage to see if it has been modified since the last time it was checked. However I now have a need for it to work behind a site that require ...
0
votes
1answer
301 views

Trouble logging in with Ruby Mechanize

I'm trying to use Mechanize Ruby to login to a website. I've looked at every example on this site, but an a ruby beginner and get confused as to which page I should even be getting to access the form. ...
1
vote
3answers
533 views

Log into an https site using perl

I'm trying to write a perl script to log into a password protected site. I've used the WWW::Mechanize module for similar tasks in the past, but this this site is different in a couple of ways: -It ...
1
vote
2answers
609 views

Submitting Forms with Mechanize (Python)

Well, I am trying to login to a site using Python and mechanize. I've got the site opened: site = br.open("http://example.com/login.php") And I've got a list of the forms (with br.forms). <GET ...
1
vote
1answer
522 views

Using Python mechanize to log into websites?

I'm using mechanize (and following this tutorial) to try to log into websites. I wanted to try to test it out on Twitter, so this is the script I came up with: import mechanize import cookielib ...
0
votes
2answers
117 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 ...
0
votes
1answer
296 views

Trouble logging in with Ruby's Mechanize

Trying to create an automatic login to a webpage which takes HTTP POST input but failing to do so. Here's the webpage: https://job.jobnet.dk/CV/Login/Login.aspx I created a user stacktest with ...
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. ...
2
votes
1answer
877 views

Http Error 405/500 in Python/Mechanize (using mechanize auto login one website)

Here is the website's address on which i want to using python/mechanize to auto login: http://www.autohome.com.cn/tools/hometoplogin.html And here is my code: br = Browser() login_url = ...
2
votes
1answer
1k views

Use mechanize to log into megaupload

I am attempting to use the following code to log into megaupload. My question is, how do i that it successfully logged in? I print out the current URL at the end of the code, but when i run the script ...
6
votes
2answers
2k views

Mechanize for Python 3.x

is there any way how to use Mechanize with Python 3.x? Or is there any substitute which works in Python 3.x? I've been searching for hours, but I didn't find anything :( I'm looking for way how to ...
1
vote
3answers
1k views

Get Mechanize to handle cookies from an arbitrary POST (to log into a website programmatically)

I want to log into https://www.t-mobile.com/ programmatically. My first idea was to use Mechanize to submit the login form: However, it turns out that this isn't even a real form. Instead, when you ...
1
vote
1answer
1k views

how to capture and then pass cookies to ruby/mechanize ( a workaround to log in)

this questions is linked with my other question log in with browser and then ruby/mechanize takes it over? I am not able (hopefully I will in near future :-) to log into one website using ...
1
vote
1answer
1k views

how to log into vBulletin 3.6 using mechanize (ruby)

the html looks like below or you can find it here http://www.vbulletin.org/forum/index.php <!-- login form --> <form action="login.php?do=login" method="post" ...
14
votes
6answers
2k views

WebBrowsing in C# - Libraries, Tools etc. - Anything like Mechanize in Perl?

Looking for something similar to Mechanize for .NET... If you don't know what Mechanize is.. http://search.cpan.org/dist/WWW-Mechanize/ I will maintain a list of suggestions here. Anything for ...