Hi all,

I had this AutoCompleteform.html

<html>
<body>
<wicket:panel>
         <td><input type="text" wicket:id="autoOne" size="50" /></td>
<td><input type="text" wicket:id="autoTwo" size="50" /></td>
</wicket:panel>
</body>
</html>


my question : how can i test setting a value in this input textfield
"autoOne"?

I only started the panel in the wicket tester :

  tester.startPanel(new TestPanelSource() {
public Panel getTestPanel(String panelId) {
return new AutoCompleteform(panelId, inputMap, employer);
}
});


but I don't know what to do next?

Reply via email to