If an element with mixed content (text and element/s) is located with an XPath locator expression, then the text content of the mixed-content element only is returned. The text content of descendant elements is ignored. This is best explained with an example of the Update Node(s) action. Consider the Update Node(s) action defined in the screenshot below. If the XML tree had the following structure and content: <Element1> <source>AAA <subsource>BBB</subsource> </source> <target></target> </Element1> Then the target element would be updated with the text content of the mixed-content element source, while ignoring the content of its child element subsource. The node named target will be updated to <target>AAA</target>. Note: If you wish to include the text content of descendant node/s, use a string function. Using the XML example above, for instance, the expression string($XML1/Element1/source, '') will return "AAABBB". Note: Charts use the XPath compliant method of serializing: When a mixed-content element is located using an XPath locator expression, then the text content of descendant elements is also serialized. |