Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

New Test Script API method -- findObjectByTestid
Method returns the test script object for the Nexaweb UI component with the specified testid. This method returns null if no object with the specified id is found, or testid generation is set to false in nexaweb-client.xml.

 

Info
titleTrap to Avoid

By design listItem, row and cell elements don't have testid values. These two methods don't work directly for these elements. You may use the two new methods for the ancestor element (listBox for listItem; table for row and cell). For instance, findObjectByTestid can't be used to define the first listItem in a listBox.  You can define a listBox test object with the findObjectByTestid method, and then use the findObjects method (with the listBox test object and "/listItem[1]" as parameters) to get the first listItem object.

 

Memory Leak Resolved
The memory leak occurred in data intensive UI where elements were created and then removed in the same <xm:modifications> block.

...