Re: Web automation (was: Pressing a Webpage Button)

2005-11-07 Thread qwweeeit
Hi all, I must correct myself: > With such a method you can bypass the Google's restrictions, because > you are using the browser (only building automatically the query). Of course that's not correct because you are using a program (twill) different from a browser and if google controls from where

Re: Web automation (was: Pressing a Webpage Button)

2005-11-03 Thread [EMAIL PROTECTED]
Twill or Pamie looks good, if your looking for a solution using Python. If you are looking for Cross- browser solution for testing there is also selenium that does that. The have some code for use in Python. There is also WATIR in RUBY and SAMIE in PERL It depends on your enviroment and needs.

Re: Web automation (was: Pressing a Webpage Button)

2005-11-03 Thread [EMAIL PROTECTED]
Twill or Pamie looks good, if your looking for a solution using Python. If you are looking for Cross- browser solution for testing there is also selenium that does that. The have some code for use in Python. There is also WATIR in RUBY and SAMIE in PERL It depends on your enviroment and needs.

Re: Web automation (was: Pressing a Webpage Button)

2005-11-03 Thread [EMAIL PROTECTED]
Hello, It's fairly easy to do see code below: ## from win32com.client import DispatchEx import time # instaniate a new IE object ie = DispatchEx('InternetExplorer.Application') # Naviagte to the site ie.Navigate("www.google.

Web automation (was: Pressing a Webpage Button)

2005-11-03 Thread qwweeeit
Hi all, Elliot Temple on the 1 June wrote: > How do I make Python press a button on a webpage? I looked at > urllib, but I only see how to open a URL with that. I searched > google but no luck. > For example, google has a button how would i make a script to press that button? I have a si