Cypress学习8-Cookies 使用
Posted yoyoketang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Cypress学习8-Cookies 使用相关的知识,希望对你有一定的参考价值。
前言
cy.getCookie()
根据 cookie 的 name 名称,获取对应 cookie 的 value 值
cy.get(‘#getCookie .set-a-cookie‘).click()
// cy.getCookie() yields a cookie object
cy.getCookie(‘token‘).should(‘have.property‘, ‘value‘, ‘123ABC‘)
cy.getCookies()
获取浏览器全部cookies
cy.getCookies().should(‘be.empty‘)
cy.get(‘#getCookies .set-a-cookie‘).click()
// cy.getCookies() yields an array of cookies
cy.getCookies().should(‘have.length‘, 1).should((cookies) => {
// each cookie has these properties
expect(cookies[0]).to.have.property(‘name‘, ‘token‘)
expect(cookies[0]).to.have.property(‘value‘, ‘123ABC‘)
expect(cookies[0]).to.have.property(‘httpOnly‘, false)
expect(cookies[0]).to.have.property(‘secure‘, false)
expect(cookies[0]).to.have.property(‘domain‘)
expect(cookies[0]).to.have.property(‘path‘)
})
cy.setCookie()
也可以给浏览器,自己添加cookie
cy.getCookies().should(‘be.empty‘)
cy.setCookie(‘foo‘, ‘bar‘)
// cy.getCookie() yields a cookie object
cy.getCookie(‘foo‘).should(‘have.property‘, ‘value‘, ‘bar‘)
cy.clearCookies()
清空全部cookies
cy.getCookie(‘token‘).should(‘be.null‘)
cy.get(‘#clearCookie .set-a-cookie‘).click()
cy.getCookie(‘token‘).should(‘have.property‘, ‘value‘, ‘123ABC‘)
// cy.clearCookies() yields null
cy.clearCookie(‘token‘).should(‘be.null‘)
cy.getCookie(‘token‘).should(‘be.null‘)
cy.clearCookies()
根据 cookie 的 name 名称,删除其中的一个cookie
cy.getCookies().should(‘be.empty‘)
cy.get(‘#clearCookies .set-a-cookie‘).click()
cy.getCookies().should(‘have.length‘, 1)
// cy.clearCookies() yields null
cy.clearCookies()
cy.getCookies().should(‘be.empty‘)
以上是关于Cypress学习8-Cookies 使用的主要内容,如果未能解决你的问题,请参考以下文章