Re: [python-win32] Internet Explorer Session independent Creation

2008-12-18 Thread Romain Gilles
I have exactly the same idea. But I was not able to retrieve the IE instance. So I will try your solution. Thanks, Romain. 2008/12/18 Michel Claveau m...@mclaveau.com Hi! A way is to launch separate instance, then connect to instances. Example: import os,time,win32com.client def

Re: [python-win32] Internet Explorer Session independent Creation

2008-12-17 Thread Michel Claveau
Hi! A way is to launch separate instance, then connect to instances. Example: import os,time,win32com.client def finstance(url): for instance in win32com.client.Dispatch('{9BA05972-F6A8-11CF-A442-00A0C90A8F39}'): if instance.LocationURL.find(url)-1: