Overview
Returns boolean value of the specified xpathcurrent node.boolean myXml.EvaluateBoolean()
boolean myXml.EvaluateBoolean(xpath: string)
Arguments
string xpath
XPath to evaluate. If not specified current node is used.
Remarks
This method checks the evaluated value is (non-case sensitive) equal to "false" or "0" or empty value. All other values are evaluated as true value.
Example
Evaluate with a xpath
Code Block | ||
---|---|---|
| ||
var isDisabled = $Xml.EvaluateBoolean('//Customer/IsDisabled'); |