I have a xml config file and needs to update particular attribute value.
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<testCommnication>
<connection intervalInSeconds="50" versionUpdates="15"/>
</testCommnication>
</configuration>
I just need to update the "versionUpdates" value to "10".
How can i achieve this in python 3.
I have tried xml.etree and minidom and not able to achieve it.