I'm trying to execute the instructions that you have provided here: http://mail.python.org/pipermail/python-announce-list/2009-March/007279.html
I have the exact versions of Python and win32python as suggested by you: Python 3.0.1 (r301:69561, Feb 13 2009, 20:04:18) [MSC v.1500 32 bit (Intel)] on win32
but on executing the simple code, i get the following errors:
Traceback (most recent call last):
File "testPAM.py", line 10, in <module>
ie.setTextBox("q", "python")
File "C:\Users\raveesh\Dropbox\myCode\SSSB\PAM30.py", line 2093, in setTextBox
foundElement = self.getTextBox(name)
File "C:\Users\raveesh\Dropbox\myCode\SSSB\PAM30.py", line 1717, in getTextBox
foundElement = self.findElement("input", "id;name;value", name)
File "C:\Users\raveesh\Dropbox\myCode\SSSB\PAM30.py", line 445, in findElement
elements = self.getElementsList(tag)
File "C:\Users\raveesh\Dropbox\myCode\SSSB\PAM30.py", line 939, in getElementsList
elements = self._ie.Document.getElementsByTagName(tag)
TypeError: getElementsByTagName() takes exactly 1 positional argument (2 given)
The bug has also been reported on http://stackoverflow.com/questions/11580340/typeerror-with-pamie, but with no solution!
Could you see what it the issue? I am running Win7, 64 bit, Intel
Looking into the getElementsByTagName() takes exactly 1 positional argument (2 given) issue - will post when it is resolved