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
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 -
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.Application')
#
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
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
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
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
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
Regarding the call to FireEvent:
I still do not understand why you could call fireEvent('onchange')
and now it you have to call "FireEvent('onchange')" to avoid the
Access denied message
In Ruby or Perl you still call "fireEvent('onchange')" it has not
changed and you do not get the access den
Found that you have to call FireEvent a different way in the News IE
and sp2
Instead of:
ie.Document.forms[0].campus.fireEvent('onchange')
if needs to be changed to:
ie.Document.forms[0].campus.FireEvent('onchange')
RLM
[EMAIL PROTECTED] wrote:
> Hello,
>
> Does anyone know a workaround f
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
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
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
13 matches
Mail list logo