Is it possible use more than one xpath matcher for logic and evaluation? For example I want to check if a XML file has a certain tag and if another tag has certain value.
`...
bodyPatterns": [
{
"matchesXPath": "//ElementA`"
`},
{
"matchesXPath": {
"expression": "//ElementB/text()",
"contains": "XXX`"
}
}
]