I am trying to find the XPath of the below XML. Its consists of properties array list. I need to fetch the value for 'COMPUTER'.
<output  xmlns:tns="http://www.ariuy.org/" custname="marcus" >
    <tns:column name="customer_english_name">marcus ag</tns:column>
    <tns:column name="customer_primary_name">marcus ag</tns:column>
   
    <tns:reqline>
        <tns:orderline user_item_description="xyz">
            <tns:column name="properties">
                <tns:column name="name">COMPUTER</tns:column>
                <tns:column name="value">HCL </tns:column>
            </tns:column>
            <tns:column name="properties">
                <tns:column name="name">LAPTOP</tns:column>
                <tns:column name="value">HP</tns:column>
            </tns:column>
            <tns:column name="properties">
                <tns:column name="name">PHONE</tns:column>
                <tns:column name="value">MI</tns:column>
            </tns:column>
            <tns:column name="properties">
                <tns:column name="name">JOB</tns:column>
                <tns:column name="value">Developer</tns:column>
            </tns:column>
            
            ......
       
        </tns:orderline>
    </tns:reqline>
</output>
I have tried
/tns:output/tns:reqline/tns:OrderLine/tns:properties[@name='COMPUTER']/@value
but it is not working.
 
     
     
     
    