Hi Ronan,

Looking at the output of WicketTester.debugComponentTrees() I can see that the grid row is the deepest level with a wicket id:
...
panel:storyGrid:form:bodyContainer:body:row:2:item com.inmethod.grid.common.AbstractGridRow

If you use http://wicketpagetest.sourceforge.net, then you can test
it easily like:

   Selenium s = ...;
assert s.getText("wicket=//storyGrid//body//row[2]//item[3]").equals("foo";

In this example you're checking the the 3rd cell in the 2nd row (both
are 0-based).

--
Kent Tong
Useful news for CIO's at http://www2.cpttm.org.mo/cyberlab/cio-news

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to