Hi,
I'm pretty new to Python, and brand new to PAMIE, and I'm out of ideas on what to try on this.
I'm running a simple test script to go to google, type something in the search box and search for it.
Everything except the textAreaSet function works flawlessly.
Here's the code:
[PYTHON]
- from cPAMIE import PAMIE
-
-
ie = PAMIE()
-
-
ie.navigate("google.com")
-
ie._wait()
-
ie.textAreaSet('q', 'Python')
-
ie._wait()
-
ie.buttonClick('btnG')
[/PYTHON]
It opens the browser window, then looks for the text box and doesn't find it, returns false, then clicks the search button.
The return for the textAreaSet function is this:
** elementFind() did not find textarea-name;id-q
** textAreaSet() did not find q-Python
As I said, I'm out of ideas, the search box is there and named 'q' for all I can tell.
I apologize if this is something obvious, but I'm pretty new to this.
Thanks for your help.