I have been using Runscope default library "marknote XML Parser" to parse XML documents. In all the endpoints so far it was working well. However in the new endpoint I am trying to parse it is parsing a null object. This is the code I am using:
var parser = new marknote.Parser();
var doc = parser.parse(response.body);
The thing is, when I try the information using the 'XML body' assertions of Runscope using X-path it works like a charm, but when I use the library it does not parse.
Any ideas?