*/
private static int matchCount(WicketTester tester, String xPathExpr)
throws IOException, SAXException, ParserConfigurationException, TransformerException,
XPathExpressionException
{
NodeList nl = new XPathHelper(markupAsDOM(tester)).findNodes(xPathExpr);
return nl != null ? nl.getLength() : 0;
}