Cypress 我们能把饼干保存在柏树里吗?

Cypress 我们能把饼干保存在柏树里吗?,cypress,Cypress,我想知道有没有什么办法可以把饼干保存在柏树里。 我尝试在cypress中为我的应用程序自动化一个功能,但无法加载页面 Cypress.Cookies.defaults({ whitelist: ["cookie_name", "cookie_name" ] }); //测试描述功能 afterEach(() => { Cypress.Cookies.preserveOnce(); });

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

    Cypress.Cookies.defaults({
    whitelist: ["cookie_name", "cookie_name" ]
    });
//测试描述功能

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