Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Announcing PAM 3.0 for Web testing

33 views
Skip to first unread message

bob...@hotmail.com

unread,
Mar 6, 2009, 1:47:19 PM3/6/09
to comp-lang-py...@moderators.isc.org
Python Automation Module version 3.0 (PAM30.py).

This python module allows simple automation of the Internet Explorer
Browser by using the COM object.
This can be used in QA or Development testing to write Automation
tests in Python .
Easy to use.

Note: This version only only works with Python 3.0 on Windows and
requires Mark Hammond's pywin32 for Python3.0 - pywin32-213.win32-
py3.0.exe

Simple Example to automate a google search on "Python"

######################################################
from PAM30 import PAMIE

ie = PAMIE()
ie.navigate("google.com")
ie.setTextBox("q", "python")
ie.clickButton("Google Search")
ie.clickLink("Python Programming Language -- Official Website")

######################################################

Thank you
Rob Marchetti

0 new messages