我试图在页面对象命令中设置cookie,但是失败。
这是页面对象命令:
setThingTypeCookie: function() {
return this.api.setCookie({
name : "thingType",
value : "I am a thingType ID"
})
.pause(1);
},
运行测试时,出现以下错误:
Error while running .setCookieString() protocol action: unable to set cookie
有人可以指出我在做什么错吗?
谢谢!
Butch