Reputation: 11255
I need to set a cookie manually to test the login page of my website. However, I am not sure how to set the path option. I keep getting a "Too many arguments" warning. Does anyone know to do it with the Firefox Web Developer toolbar? Screenshot below:
Upvotes: 2
Views: 3678
Reputation: 33162
When it says "[options]", you're supposed so enter something like --switch
. Once you hit the -
, you'll normally get auto-completion suggestions for all available options.
To answer your particular question:
cookie set aName aValue --path /aPath
Upvotes: 4