Re: login website that using PHP

2005-06-20 Thread [EMAIL PROTECTED]
pbpscript is a little python toolkit for simulating a webbrowser, specifically for doing testing. It handles all the cookies and stuff for you. You might want to have a look at it. Stephen. -- http://mail.python.org/mailman/listinfo/python-list

Re: login website that using PHP

2005-06-20 Thread Tim Williams
- Original Message - From: frost [EMAIL PROTECTED] Hi, I am trying to login a website that using PHP and javascript. This is what happend if you browse that website using IE, after you login, you can go anywhere without enter your name and password again, as long as you keep

Re: login website that using PHP

2005-06-20 Thread Fuzzyman
The behaviour with the browser is what is known as a 'session cookie' -the site sets it when you login and the browser keeps it until you end the session by closing the browser. You handle the cookie using ClientCookie (Python 2.3) or cookielib (Python 2.4). You need to create a cookiejar

Re: login website that using PHP

2005-06-20 Thread erinhouston
Here are the links to ishy_browser. http://www.ishpeck.net/index.php?P=b1115239318ishpeck http://www.ishpeck.net/index.php?P=b1115225809ishpeck -- http://mail.python.org/mailman/listinfo/python-list

Re: login website that using PHP

2005-06-20 Thread Chris Curvey
I'll add a plug for PAMIE (another set of Python classes that drive IE) http://pamie.sourceforge.net/ -- http://mail.python.org/mailman/listinfo/python-list

Re: login website that using PHP

2005-06-20 Thread Drazen Gemic
On Sun, 19 Jun 2005 19:11:38 -0700, frost wrote: Hi, I am trying to login a website that using PHP and javascript. This is what happend if you browse that website using IE, after you login, you Browser remembers so called HTTP authorization header field. It sends authorization information

Re: login website that using PHP

2005-06-20 Thread J Correia
frost [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi, I am trying to login a website that using PHP and javascript. This is what happend if you browse that website using IE, after you login, you can go anywhere without enter your name and password again, as long as you keep

Re: login website that using PHP

2005-06-20 Thread frost
Thank you all for the help. This problem bothered me for 3 days, Now I get it! You are right, it is the session cookie, after I use the cookiejar and the opener, I got it!!! I am really glad I found this place. Thank you again! -- http://mail.python.org/mailman/listinfo/python-list

login website that using PHP

2005-06-19 Thread frost
Hi, I am trying to login a website that using PHP and javascript. This is what happend if you browse that website using IE, after you login, you can go anywhere without enter your name and password again, as long as you keep that IE open, but after you close that IE, then later on open