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
"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
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 informatio
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
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
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 instance
- 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
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
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
that websit