> I added a new command in IDE as
> Command --> qxClick
> Target --> qx=thefatbutton
> 
> When I click the Find button, it gives 
> [error] Element qx=thefatbutton not found 

We don't tend to use the qx locators so I don't have much experience of
that. However, you can turn on debug logging in Selenium IDE and see
what's going wrong. The function where the failure occurs is most likely
_findQxObjectInWindow at line 774 of
http://qooxdoo-contrib.svn.sourceforge.net/viewvc/qooxdoo-contrib/trunk/qo
oxdoo-contrib/Simulator/trunk/tool/selenium/user_extension/user-extensions
-qooxdoo.js?revision=2152&view=markup

There are various debug calls there - see which one is failing.

We tend to use locators using the text on the page:

Clicking on a menu:

//*[text()=" + sMainMenuItem + "]"

Clicking on a text box with a label ("Title:") next to it:

//*[text()=\"Title:\"]/parent::div//input

Hugh

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to