Hi
In tapestry t:id is the unique id of a component within a container
component which can be used to refer to the component in the java
class. The components that needs to use client id(javascript id)
implements ClientElement interface which has a single method
getClientId() that returns the clie
Hello,
I am in reference to the following page:
http://tapestry.apache.org/unit-testing-pages-or-components.html
In the form testing section the code goes as follows:
Element form = doc.getElementById("*form1*");
What is actually meant by "*form1*"? The *t:id* or the actual *client* *id*?
If