Automating IE 6.0

EricP fordphoto2020NOSPAM at yahoo.comNOSPAM
Sat Oct 25 06:31:58 EDT 2003


I'm trying to figure out how to print from IE 6.0 using Python's Win32all
com library.
When I do

from win32com.client import Dispatch
from time import sleep
ie = Dispatch("InternetExplorer.Application")
ie.Visible = 1
ie.Navigate("http://www.cnn.com")
if ie.Busy:
    sleep(2)

and then interactly look for methods by using the ie. (dot) approach there
are very few objects and non that relate to the tool bar or commands.  How
do I expose the IE object library and which object library do I inspect to
see the objects and methods avaiable to me.

Thanks






More information about the Python-list mailing list