Hello

I'm brand new to Python, I usually program in Perl, C, C++, but I would like to try pamie with Python, I download it and I moved the 2 files called PAM30 and winGuiAuto to C:\Python26\Lib\site-packages but after I run this code

from cPAMIE import PAMIE

# create a new instance of the PAMIE object
ie = PAMIE( )

# Lets navigate to google - this methods takes a string as the URL

ie.Navigate("'www.google.com" )
ie.textBoxSet("q", "python" ) #control name, value

# Now Submit the form.
ie.buttonClick("'btnG" )

but when I run it I get the following

Traceback (most recent call last):
  File "C:\Documents and Settings\Admin\Desktop\ie\1.py", line 1, in <module>
    from cPAMIE import PAMIE
ImportError: No module named cPAMIE

What can I do to make it run?


Thank You

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.