We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cookie should be created
Cookie creation failed
this.Given(/^the cookie "([^"]*)" with value "([^"]*)" exists$/, function (name, value) { client.deleteCookie(name); var time= new Date(); time.setTime(time.getTime() + (1000 * 3600)); var cookie = {name, value}; cookie.expiry = time.getTime() / 1000; cookie.domain = "localhost"; client.setCookie(cookie); });
Execute this with phantomjs The step failed with Error: Unable to set Cookie
Join our Slack xolv.io/community #chimp channel, where you can find help and help others.
The text was updated successfully, but these errors were encountered:
The reason is this bug in PhantomJS ariya/phantomjs#14047
It is fixed in the master branch, but until now there is no new release availble. I've build a new version manually on a Linux machine.
Sorry, something went wrong.
No branches or pull requests
Expected behaviour
Cookie should be created
Actual behaviour
Cookie creation failed
Steps to reproduce the problem
Execute this with phantomjs
The step failed with Error: Unable to set Cookie
Used version
Console / Log Output
Join our Slack xolv.io/community #chimp channel, where you can find help and help others.
The text was updated successfully, but these errors were encountered: