Unable to resolve providedscripts in version 7.1

I have a groovy script where i use the following code ;
providedscripts.BonitaXML.evaluateXPathOnVariable(responseDocumentBody, “/getSomething/text()”)
Tried to use import.providedscripts.Bonitaxml but it gives me an error → unable to to resolve providedscripts.

Any idea how i can resolve this?

Regard,
A.

I think you have to use directly BonitaXML.evaluateXPathOnVariable(responseDocumentBody, “/getSomething/text()”) instead of providedscripts.BonitaXML.evaluateXPathOnVariable(responseDocumentBody, “/getSomething/text()”)

Yes works without provided scripts.
Thanks.