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
--
http://mail.python.org/mailman/listinfo/python-announce-list

        Support the Python Software Foundation:
        http://www.python.org/psf/donations.html

Reply via email to