Tagged Questions
The clientform tag has no wiki summary.
1
vote
1answer
369 views
How to set an nonexistent field in Python ClientForm?
I'm using mechanize (which uses clientform) for some web crawling in python and since it doesn't support JS, I want to set a value of an unexistent input in a form (the input is generated by JS). How ...
1
vote
1answer
750 views
Python mechanize doesn't click a button
check the following script:
from mechanize import Browser
br = Browser()
page = br.open('http://scottishladiespool.com/register.php')
br.select_form(nr = 5)
r = br.click(type = "submit", nr = 0)
...
0
votes
0answers
31 views
Keep me logged in with ClientForm in Python
I am using ClientForm to log in at tvtorrents.com. It works, I can send the form successfully. I want to be logged in, so when I am trying to go to another site, ex "My Favorites", it keeps me logged ...
0
votes
0answers
43 views
How to edit a website textarea with python by opening the url
I know how to input data into forms and submit by opening the url, as in:
...
response = urlopen("http://ohdontforget.com/")
forms = ParseResponse(response, backwards_compat=False)
form = forms[1] ...
0
votes
0answers
168 views
Python and Clientform, “webbot” to auto click on an Apply button
I am using clientform and urllib2 to automate logging into a webserver to upload a file.
I am able to log in. fill in the file field, but I am not able to click the "apply" button.
Here is the HTML ...
0
votes
1answer
212 views
how to submit the query to http://www.ratsit.se/BC/Search.aspx ? I write a script but seems something wrong with the “Click” button
import urllib2, cookielib
import ClientForm
from BeautifulSoup import BeautifulSoup
first_name = "Mona"
last_name = "Sahlin"
url = 'http://www.ratsit.se/BC/Search.aspx'
cookiejar = ...
0
votes
0answers
102 views
can not submit query to .aspx page [closed]
import urllib2, cookielib
import ClientForm
from BeautifulSoup import BeautifulSoup
first_name = "Jonas"
last_name = "Carlsson"
'''request url'''
url = ...
0
votes
1answer
429 views
My python auto-login script is broken
A long time ago, I wrote a little python script to automatically log me on to the wireless network at my office.
Here is the code:
#!/opt/local/bin/python
from urllib2 import urlopen
from ...
0
votes
2answers
198 views
Python ClientForm Error
import ClientForm
from urllib2 import urlopen
page = urlopen('http://garciainteractive.com/blog/topic_view/topics/content/')
form = ClientForm.ParseResponse(page, backwards_compat=False)
print ...
0
votes
1answer
112 views
Python Clientform-can not get expexted result
I am trying to search through http://www.wegottickets.com/ with the keywords "Live music". But the returned result is still the main page, not the search result page including lots of live music ...
0
votes
1answer
176 views
How to fix such ClientForm bug?
from mechanize import Browser
br = Browser()
page = br.open('http://wow.interzet.ru/news.php?readmore=23')
br.form = br.forms().next()
print br.form
gives me the following error:
Traceback (most ...