Skip to content
Open
Changes from 1 commit
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
4 changes: 4 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,9 @@ func (wd *remoteWD) GetCookies() ([]Cookie, error) {
}

func (wd *remoteWD) AddCookie(cookie *Cookie) error {
if cookie.Expiry==0 {
cookie.Expiry = math.MaxUint32
}
return wd.voidCommand("/session/%s/cookie", map[string]*Cookie{
"cookie": cookie,
})
Expand Down