Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions remote.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import (
"errors"
"fmt"
"io/ioutil"
"math"
"mime"
"net/http"
"net/url"
Expand Down Expand Up @@ -1009,6 +1010,10 @@ func (wd *remoteWD) GetCookies() ([]Cookie, error) {
}

func (wd *remoteWD) AddCookie(cookie *Cookie) error {
//if cookie.Expiry is zero, AddCookie is not effective, @see https://github.com/tebeka/selenium/issues/130
if cookie.Expiry == 0 {
cookie.Expiry = math.MaxUint32
}
return wd.voidCommand("/session/%s/cookie", map[string]*Cookie{
"cookie": cookie,
})
Expand Down