Hi,

I'm new in python and I would like to know how I can create 2 (and more)
session independent Internet Explorer.

This is my actual code:



ie1 = Dispatch("InternetExplorer.Application")

ie1.Navigate(url)

login(ie1)



ie2 = Dispatch("InternetExplorer.Application")

ie2.Navigate(url)

...



In this example when the 'ie2' instance navigate to the url it is
automatically authenticated as if ie1 and ie2 shared the same credential.

But what I want is truly independent internet explorer instance.



Somebody can help me?



Thanks,

Romain
_______________________________________________
python-win32 mailing list
python-win32@python.org
http://mail.python.org/mailman/listinfo/python-win32

Reply via email to