Open source Web testing tool - cPAMIE 1.6b released

2005-09-07 Thread calfdog
I am pleased to announce version cPAMIE 1.6 the Web automation tool for Internet explorer. If your looking for a fast way, easy to learn way to drive your browser check out PAMIE. Is PAMIE right for you?, depends on your needs and complexity of the web application. Pamie can take care of the basi

Re: New Arrival to Python

2005-08-25 Thread calfdog
I have been using Eclispe IDE with the PyDev plugin for Python Development. it allow you to set up projects. you can use PyAnt to build them. It works great for me. It's free an easy to use. Eclipse is at http://www.eclipse.org There is also Emacs with the python plugin Rob M. python project -

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') #

Re: Using PAMIE to upload and download files...is it possible?

2005-06-23 Thread calfdog
If you go into the PAMIE users group and go to the files Section you will see modalPopupTest.py this will handles Uploads, pop-ups, alerts using PAMIE PAMIE will include this feature in the next release http://groups.yahoo.com/group/Pamie_UsersGroup/files/ RLM scrimp wrote: > Well, thanx to Eri

Re: Pressing A Webpage Button

2005-06-22 Thread calfdog
You also may want to fire an event when a button is pressed such as: ie.Document.forms['f'].elements['btnG'].FireEvent('onClick') Events: onclick Fires when the user clicks the left mouse button on the object. onsubmit Fires when a FORM is about to be submitted. For more go here: http://msdn.m

Re: How to receive events (eg. user mouse clicks) from IE

2005-06-22 Thread calfdog
You also want to make sure the frame you want is loaded I use the following method: def _frameWait(self, frameName=None): thisCount = self._timeOut while self._ie.Busy: time.sleep(0.1) thisCount = thisCount - 1 if thisCount == 0: break

Re: Using PAMIE to upload and download files...is it possible?

2005-06-10 Thread calfdog
Yes, you should be able uploads and downloads, but you have to import modaltest which uses WinGuiAuto to do this. This also handles pop-ups ModalTest.py is in the files section of the Pamie Users Group http://pamie.sourceforge.net. You have to sign up as a member to access the file. Membership i

OpenSource Automation tool - Pamie 1.5 released

2005-06-02 Thread calfdog
PAMIE 1.50 released!! Now with Frames suport Why wait, when you could be using this to Automate now!... It's Free!!! http://pamie.sourceforge.net What is PAMIE? PAMIE stands for Python Automation module for Internet Explore

Re: Access denied calling FireEvent in Python

2005-03-31 Thread calfdog
Regarding the call to FireEvent: I still do not understand why you could call fi­reEvent('onchange') and now it you have to call "Fi­reEvent('onchange')" to avoid the Access denied message In Ruby or Perl you still call "fi­reEvent('onchange')" it has not changed and you do not get the access den

Re: Access denied calling FireEvent in Python

2005-03-28 Thread calfdog
Found that you have to call FireEvent a different way in the News IE and sp2 Instead of: ie.Document.forms[0].campus.fi­reEvent('onchange') if needs to be changed to: ie.Document.forms[0].campus.Fi­reEvent('onchange') RLM [EMAIL PROTECTED] wrote: > Hello, > > Does anyone know a workaround f

Re: Win 32 - VB, Ruby, Perl VS Python with fireEvent

2005-03-24 Thread calfdog
Roger, Thank you so much! I have been pulling my hair out over this! Rob. Roger Upole wrote: > I don't know why case would make a difference, but if I change > the fireevent call to FireEvent, it works on XP sp2. > It also works if you generate the makepy wrappers (probably > because that forc

Win 32 - VB, Ruby, Perl VS Python with fireEvent

2005-03-23 Thread calfdog
Hello, I was wondering if anyone could tell me why fireEvent works in every language but Python with the latest Internet Explorer? I tried this page that has two listboxes if you select Listbox A the Listbox B should change. The code status: Works fine with Python 2.3, 2.4 in Windows XPsp1 DOES

Access denied calling FireEvent in Python

2005-03-16 Thread calfdog
Hello, Does anyone know a workaround for calling fireEvent. With the latest from Microsoft OS XP2 and Hot fixes to IE it now gives an "access denied" error in Python when called. Here is what I am trying to do: Set the "campus" listbox value and theb call fire event, such as in the code below. I