Re: Put a url in a browsers address bar

2005-08-18 Thread ina
Here is a start. http://www.ishpeck.net/?P=pytesting This is all stuff based on windos. Colin Gillespie wrote: > Dear All, > > I would like to place a url in my browsers address bar, then execute. > How can do this? > > e.g. > > def goToGoogle(): > url = "www.google.com" > b = openB

Re: Put a url in a browsers address bar

2005-08-18 Thread Steve Holden
Colin Gillespie wrote: >>>I would like to place a url in my browsers address bar, then execute. >>>How can do this? >>> >> >>def goToGoogle(): >>import webbrowser >>webbrowser.open("www.google.com"); >> > > > Thanks for the quick reply. Do you know what module I would use to fill > out a

Re: Put a url in a browsers address bar

2005-08-18 Thread Steve Holden
Colin Gillespie wrote: >>>I would like to place a url in my browsers address bar, then execute. >>>How can do this? >>> >> >>def goToGoogle(): >>import webbrowser >>webbrowser.open("www.google.com"); >> > > > Thanks for the quick reply. Do you know what module I would use to fill > out a

Re: Put a url in a browsers address bar

2005-08-18 Thread Peter Hansen
Colin Gillespie wrote: >> >>> I would like to place a url in my browsers address bar, then execute. >>> How can do this? >>> >> >> def goToGoogle(): >> import webbrowser >> webbrowser.open("www.google.com"); >> > > Thanks for the quick reply. Do you know what module I would use to fill >

Re: Put a url in a browsers address bar

2005-08-18 Thread Colin Gillespie
> >> I would like to place a url in my browsers address bar, then execute. >> How can do this? >> > > def goToGoogle(): > import webbrowser > webbrowser.open("www.google.com"); > Thanks for the quick reply. Do you know what module I would use to fill out a form on an open web page? Th

Re: Put a url in a browsers address bar

2005-08-18 Thread Alan Kemp
On Thu, 18 Aug 2005 12:01:16 -0400, Colin Gillespie <[EMAIL PROTECTED]> wrote: > I would like to place a url in my browsers address bar, then execute. > How can do this? > > e.g. > > def goToGoogle(): > url = "www.google.com" > b = openBrowser() > b.goToUrl(url) > retu

Put a url in a browsers address bar

2005-08-18 Thread Colin Gillespie
Dear All, I would like to place a url in my browsers address bar, then execute. How can do this? e.g. def goToGoogle(): url = "www.google.com" b = openBrowser() b.goToUrl(url) return True Thanks for any help Colin -- http://mail.python.org/