Re: Using win32com for web automation

2005-08-02 Thread Chris Smith
calfdog == calfdog [EMAIL PROTECTED] writes: calfdog ina wrote: Look up pamie it should do all the work you need. If it dosn't I can send you ishyBrowser but pamie has more comunity support. calfdog # wait for the document to fully load calfdog while ie.ReadyState

Re: Using win32com for web automation

2005-08-01 Thread calfdog
ina wrote: Look up pamie it should do all the work you need. If it dosn't I can send you ishyBrowser but pamie has more comunity support. FYI #Imports from win32com.client import Dispatch from time import sleep # Create a new browser object ie = Dispatch('InternetExplorer.AppĀ­lication') #

Using win32com for web automation

2005-07-26 Thread Chris
Hi, I'm trying to figure out how to submit javascript forms using win32com in order to complete repetitive processes. The Webpage Source: (I tried to include only the important stuff) -- SCRIPT language=JavaScript function mainPageOnLoad() {

Re: Using win32com for web automation

2005-07-26 Thread Grig Gheorghiu
For Javascript automation, I recommend Selenium (http://confluence.public.thoughtworks.org/display/SEL/Home). Grig -- http://mail.python.org/mailman/listinfo/python-list

Re: Using win32com for web automation

2005-07-26 Thread ina
Look up pamie it should do all the work you need. If it dosn't I can send you ishyBrowser but pamie has more comunity support. -- http://mail.python.org/mailman/listinfo/python-list

Re: Using win32com for web automation

2005-07-26 Thread J Correia
from win32com.client import Dispatch from time import sleep ie = Dispatch('InternetExplorer.Application') ie.Visible = 1 ie.Navigate(http://ispds-sepsr.prv:7500/cs/welcome.jsp;) while ie.ReadyState != 4: sleep(1) doc = ie.Document while doc.readyState != complete: sleep(1)