try like this.
$xmlDoc = new \DOMDocument;
$xmlDoc->load('Books.xml');
$response = $xmlDoc->getElementsByTagName('Text');
foreach ($response as $node){
$node->nodeValue = 'test';
}
$xmlDoc->saveXML();
this might not the best answer but it worked for me.