-
Feature Request
-
Resolution: Fixed
-
L3 - Default
-
None
AT:
- I can provide namespaces in XPath query:
xmlString = '''
<customer>
<aaa:foo aaa:xmlns="http://test.org/aaa">bar</aaa:foo>
</customer>
'''
S( xmlString ).xPath("/customer/a:foo")
.ns("a", "http://test.org/aaa")
.element()
The query will build an javax.xml.namespace.NamespaceContext and provide it to the xpath execution (implements confirming java doc)