I just updated to Tapestry 5.0.14 from 5.0.11 and have run into an issue with using PageTester to test ActionLinks as shown here http://tapestry.apache.org/tapestry5/guide/unit-testing-pages.html
It looks like this change in 5.0.12, https://issues.apache.org/jira/browse/TAPESTRY-2294?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel is causing the trouble I'm running into. My ActionLinks no longer have an "id" therefore the call Element link = doc.getElementById("link1"); is now returning an null, causing the line doc = tester.clickLink(link); to throw a NullPointException. Any suggestions on how to get around this? example of from tml file where id was set using t:id <table t:type="grid" source="list" row="type" reorder="name,description" > <t:parameter name="nameCell"> <t:pagelink t:id="new" page="prop:createPage"> ${type.name} </t:pagelink> </t:parameter> </table> Thanks, Mark --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]