Announcing PAM 3.0 for Web testing

bobm_qa at hotmail.com bobm_qa at hotmail.com
Fri Mar 6 19:47:19 CET 2009


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


More information about the Python-announce-list mailing list