Skip to content

Instantly share code, notes, and snippets.

@jwadhwani
Last active November 6, 2016 00:47
Show Gist options
  • Save jwadhwani/be161138367a19c272c4caa4b6e405cb to your computer and use it in GitHub Desktop.
Save jwadhwani/be161138367a19c272c4caa4b6e405cb to your computer and use it in GitHub Desktop.
Get a cookie from PhantomJS/CasperJS
//phantom.cookies is an array of objects
//if cookie not available null is returned.
function getCookie (name) {
var ret = null;
phantom.cookies.forEach(function (v) {
if (v.name === name) {
ret = v.value;
}
});
return ret;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment