Re: problem with from win32com.client import Dispatch

2005-11-17 Thread muttu2244
thank you so very much robert, now its working after i put the sleep command. -- http://mail.python.org/mailman/listinfo/python-list

Re: problem with from win32com.client import Dispatch

2005-11-14 Thread [EMAIL PROTECTED]
Hello, If you want some goood examples of reading Web pages and automating this process I have a class that wraps all these functions. http://pamie.sourceforge.net But for your problem: You are trying to read the page before it is completely loaded either add a wait function or a simple sleep (

problem with from win32com.client import Dispatch

2005-11-14 Thread Shivayogimath D.
Hi all Am trying to read an html page using win32com in the following way.   from win32com.client import Dispatch ie = Dispatch("InternetExplorer.Application") ie.Navigate("https://secure.authorize.net/") doc =ie.Document print doc.body.innerHTML   with this code am easily able to

problem with from win32com.client import Dispatch

2005-11-14 Thread muttu2244
Hi all Am trying to read an html page using win32com in the following way. from win32com.client import Dispatch ie = Dispatch("InternetExplorer.Application") ie.Navigate("https://secure.authorize.net/";) doc =ie.Document print doc.body.innerHTML with this code am easily able to read the