Attribute attribute = new DefaultAttribute("pre:foo", "bar", ns2);
element.add(attribute);
Document doc = new DefaultDocument(element);
XPath xpath = new Dom4jXPath( "//namespace::node()" );
List results = xpath.selectNodes( doc );
assertEquals( 3, results.size() );
}
public void testJaxen16() throws JaxenException, DocumentException