I'm working on testing the web service which has the following XML as a request.
<request>
<customerId>ABCD1</customerId>
<accountList>
<account>
<accountNumber>12345</accountNumber>
<customerName>John</customerName>
</account>
<account>
<accountNumber>54321</accountNumber>
<customerName>Henry</customerName>
</account>
</accountList>
</request>
And expected the following XML as a response.
<response>
<bankInformationList>
<bankInformation>
<bankId>5678</bankId>
<bankName>ABCD</bankName>
</bankInformation>
<bankInformation>
<bankId>3333</bankId>
<bankName>MNOP</bankName>
</bankInformation>
<bankInformation>
<bankId>44444</bankId>
<bankName>POPO</bankName>
</bankInformation>
</bankInformationList>
</response>
I would like your help to create cucumber feature file which has the XML format as above.