You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello!
I am submitting a login form and it's working OK, I logged in, but I do not see all response headers (which I can get via say POSTMAN) especially concerning is JSESSIONID. May be there some setting I missing...
bow := surf.NewBrowser()
/*
Submiting form here
*/
//Reading Headers and Cookies
for k, c := range bow.ResponseHeaders() {
fmt.Println(k, "\t", c)
}
for k, c := range bow.SiteCookies() {
fmt.Println(k, "\t", c)
}
The text was updated successfully, but these errors were encountered:
Hello!
I am submitting a login form and it's working OK, I logged in, but I do not see all response headers (which I can get via say POSTMAN) especially concerning is JSESSIONID. May be there some setting I missing...
The text was updated successfully, but these errors were encountered: