我们可以在柏树中保存饼干吗?

时间:2019-12-26 07:27:08

标签: cypress

我想知道我有什么方法可以在柏树中保存饼干。 我尝试为我的应用程序自动化cypress中的功能,但无法加载页面。

1 个答案:

答案 0 :(得分:0)

    Cypress.Cookies.defaults({
    whitelist: ["cookie_name", "cookie_name" ]
    });

//测试描述功能

    afterEach(() => {
    Cypress.Cookies.preserveOnce();
    });