Hi,It seems that Response.getDetailedCookie("name") always returns null, while Response.getCookie("name") does return the value (proving that the named cookie is present).Am I misunderstanding the getDetailedCookie method, or is this a bug?Thanks,Tom--
You received this message because you are subscribed to the Google Groups "REST assured" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rest-assured...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
HTTP/1.1 200 OK
Server=Apache-Coyote/1.1
Set-Cookie=JSESSIONID=B3134D534F40968A3805968207273EF5; Path=/
P3P=CP="NON"
Pragma=No-cache
Cache-Control=no-cache, no-store
Expires=Thu, 01 Jan 1970 00:00:00 GMT
Vary=*
Content-Type=text/html;charset=UTF-8
Transfer-Encoding=chunked
Date=Tue, 16 Apr 2013 20:11:21 GMT
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
...lots more html...
Then, the result of the following calls
System.out.println(response.getCookie("JSESSIONID"));
System.out.println(response.getDetailedCookie("JSESSIONID"));
B3134D534F40968A3805968207273EF5
null
I'm using rest-assured 1.8.0
Regards,
Tom
--
You received this message because you are subscribed to a topic in the Google Groups "REST assured" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/rest-assured/FIV34Zhy5JU/unsubscribe?hl=en.
To unsubscribe from this group and all its topics, send an email to rest-assured...@googlegroups.com.