final Node node = representation
.getNode("/emails/email[1]/@href");
final String mailUrl = YAHOO_POP + node.getNodeValue();
request = new Request(Method.GET, mailUrl);
request.setChallengeResponse(challengeResponse);
response = client.handle(request);
assertEquals(Status.SUCCESS_OK, response.getStatus());
request = new Request(Method.DELETE, mailUrl);
request.setChallengeResponse(challengeResponse);
response = client.handle(request);