.cookies.getAll() 建议编辑
检索当前页面可见的所有 Cookie。
Cookie 以 Cookie JSON 对象数组的形式返回,其属性定义 此处。
用法
.cookies.getAll([callback])
示例
module.exports = {
'get all cookies': function (browser) {
browser
.cookies.getAll(function (result) {
this.assert.equal(result.value.length, 1);
this.assert.equal(result.value[0].name, 'test_cookie');
});
},
'get all cookies with ES6 async/await': async function (browser) {
const cookies = await browser.cookies.getAll();
browser.assert.equal(cookies.length, 1);
browser.assert.equal(cookies[0].name, 'test_cookie');
}
};
参数
名称 | 类型 | 描述 |
---|---|---|
回调 可选 |
函数 | 回调函数,将接收响应作为参数。 |
返回值
类型 | 描述 |
---|---|
Array.<object> | Cookie JSON 对象列表,其属性定义 此处。 |