Question Overflow
Question Overflow

Reputation: 11255

How to set the path of a cookie using Firefox Web Developer toolbar?

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:

enter image description here

Upvotes: 2

Views: 3678

Answers (1)

nmaier
nmaier

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

Related Questions