I'm having issues using replaceNode programmatically when a simple example works fine.
Building on a previous Question, this code works but swap out the line marked SWAP and it breaks.
Can anyone show me how to make this work with a node returned from a find{} call?
package com.az.util.test
import groovy.xml.StreamingMarkupBuilder
import groovy.xml.XmlUtil
def CAR_RECORDS = '''
    <records>
      <car name='HSV Maloo' make='Holden' year='2006'>
        <country>Australia</country>
        <record type='speed'>Production Pickup Truck with speed of 271kph</record>
      </car>
      <car name='P50' make='Peel' year='1962'>
        <country>Isle of Man</country>
        <record type='size'>Smallest Street-Legal Car at 99cm wide and 59 kg in weight</record>
      </car>
      <car name='Royale' make='Bugatti' year='1931'>
        <country>France</country>
        <record type='price'>Most Valuable Car at $15 million</record>
      </car>
    </records>
  '''
def records = new XmlSlurper().parseText(CAR_RECORDS)
def allRecords = records.car
assert 3 == allRecords.size()
def firstRecord = records.car[0]
assert 'car' == firstRecord.name()
println 'country before: ' + firstRecord.'country'.text()
def secondRecord = records.car[1]
// SWAP
//firstRecord.'country'.replaceNode {secondRecord.country}
firstRecord.'country'.replaceNode {country("Isle of Man")}
records = new XmlSlurper().parseText(XmlUtil.serialize(new StreamingMarkupBuilder().bind {
    mkp.yield records
  } ))
println 'country after: ' + records.car.country.find{ true }.text() 
println XmlUtil.serialize(new StreamingMarkupBuilder().bind {
    mkp.yield records
  } )
				
                        
Use XmlSlurper with groovy, it works perfectly with XPath:
More info