Hi,

here the code snippet for the function we use to set the id's

....

test.setId = function(widget, id) {
                             if (!widget)
                                   alert("Not a widget: "+id);
                              else
                                
widget.getContainerElement().setAttribute("id", id);
....

And here the snippets for the tables:

....
users.tableModel = new qx.ui.table.model.Simple();
....

users.tableTable = new qx.ui.table.Table(
                                users.tableModel,
                                users.tableResize
                        ).set({
                             backgroundColor: '#FFFFFF',
                              statusBarVisible: true
                         });
....

With that function we set the ID for the table and also for all other
widgets.

test.setId(users.tableTable, 'usersTable');

....

Hope that helps.

regards

ziepf

--
View this message in context: 
http://qooxdoo.678.n2.nabble.com/Selenium-search-for-special-table-cell-tp6253312p6487451.html
Sent from the qooxdoo mailing list archive at Nabble.com.

------------------------------------------------------------------------------
EditLive Enterprise is the world's most technically advanced content
authoring tool. Experience the power of Track Changes, Inline Image
Editing and ensure content is compliant with Accessibility Checking.
http://p.sf.net/sfu/ephox-dev2dev
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to