Hi

ToolTipTable was a new class created in the application.

All I had to do was to add the class in the funtion : 
Selenium.prototype.getQxTableValue = function(locator, eventParams) 

Before add:

if (qxObject) {
   if (!(this.isQxInstanceOf(qxObject, "qx.ui.table.Table"))){
      throw new SeleniumError("Object is not an instance of
qx.ui.table.Table: " + locator);
    }
  }


After add:

if (qxObject) {
   if (!(this.isQxInstanceOf(qxObject, "qx.ui.table.Table") ||
this.isQxInstanceOf(qxObject, "com.project.utils.ui.table.ToolTipTable"))){
      throw new SeleniumError("Object is not an instance of
qx.ui.table.Table: " + locator);
    }
  }


Thank you, and sorry I didn't realize this earlier
Loredana

-- 
View this message in context: 
http://qooxdoo.678.n2.nabble.com/getQxTableValue-on-a-ToolTipTable-tp6011347p6011981.html
Sent from the qooxdoo mailing list archive at Nabble.com.

------------------------------------------------------------------------------
The ultimate all-in-one performance toolkit: Intel(R) Parallel Studio XE:
Pinpoint memory and threading errors before they happen.
Find and fix more than 250 security defects in the development cycle.
Locate bottlenecks in serial and parallel code that limit performance.
http://p.sf.net/sfu/intel-dev2devfeb
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to