I want to get the value{namevalue1} from the xPath for the below xml.
<?xml version="1.0" encoding="UTF-8" ?>
<properties>
<entry key="name1">namevalue1</entry>
<entry key="name2">namevalue2</entry>
</properties>
What is the xPath for the value1?
/properties/entry[@key='name1']...