xpath - Accommodating to changes in target of transfer properties file in soapUI -
i have script evaluation scenario namespaces of request wsdl different in namespace 1 another, due testing(by importing test suite) request using property transfer in soapui becoming difficult because have change property transfer's target namespace each time because of change in namespace.my requirement create test suite can work scenarios.please suggest method.
soapui version-5.2.1
soapui accept *
wildcard namespaces. if you've like:
declare namespace ns='http://www.openuri.org/'; //ns:root/ns:somenode
you can safety simplify xpath like:
//*:root/*:somenode
or event shorter (if there same node names in different hierarchy):
//*:somenode
since there no sample of user case give general approach problem.
Comments
Post a Comment