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
{{ message }}
This repository has been archived by the owner on Jun 28, 2023. It is now read-only.
When trying to return to the parent frame in chrome, the following error occurred.
failed to switch to parent frame: request unsuccessful: invalid argument: missing command parameters
So when I changed the code in the following file and executed it, it worked fine.
..\github.com\sclevine\agouti\api\session.go
before
func (s *Session) FrameParent() error {
return s.Send("POST", "frame/parent", nil, nil)
}
after
func (s *Session) FrameParent() error {
request := struct {
ID interface{}
json:"id"
}{nil}
return s.Send("POST", "frame/parent", request, nil)
}
Thanks,
The text was updated successfully, but these errors were encountered: