Forum Discussion
deepesh_jain
15 years agoFrequent Contributor
Hi,
You XPATH expression should be something like this if you are checking the value:
exists (//ns2:sCountryISOCode[text() = "YOUR_VALUE_HERE"] )
This will check the value of node sCountryISOCode if it matches and condition passes it will pass the control to the step mentioned in your screen shot. I am however assuming you would want to pass the control UNTIL you get this value. In that case, you can use the below expression:
not (exists (//ns2:sCountryISOCode[text() = "YOUR_VALUE_HERE"] ) )
Let me know if this works.
Regards,
Deepesh Jain
You XPATH expression should be something like this if you are checking the value:
exists (//ns2:sCountryISOCode[text() = "YOUR_VALUE_HERE"] )
This will check the value of node sCountryISOCode if it matches and condition passes it will pass the control to the step mentioned in your screen shot. I am however assuming you would want to pass the control UNTIL you get this value. In that case, you can use the below expression:
not (exists (//ns2:sCountryISOCode[text() = "YOUR_VALUE_HERE"] ) )
Let me know if this works.
Regards,
Deepesh Jain