LearnBoost / soda

Selenium Node.JS adapter
http://labs.learnboost.com
464 stars 43 forks source link

Removing Session Cookies #40

Open quangv opened 12 years ago

quangv commented 12 years ago

Is there a way to delete session cookies?

I've tried .deleteAllVisibleCookies() but it doesn't seem to delete session cookies (Express).

In fact I'm not sure if I can even retrieve the session cookie.

.getCookie() doesn't show connect.sid .deleteCookie('connect.sid', 'domain=localhost, path=/) doesn't work


Oh it's an httpOnly cookie... anyway to remove it still?

quangv commented 12 years ago

So the way I did it was

server.get '/delete', (req, res)->
 req.sessionStore.clear()
 res.send(200)

soda.open 'http://localhost:3000/delete'

Anyone know a better way? Please share, thank you!