Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用Cypress测试框架来测试具有 Salesforce 后端的 Web 应用程序。
我正在寻找一种方法来确保在运行每个测试之后(或之前)从 Salesforce 后端清除(删除)所有数据。我的目的是确保所有测试都可以独立且以任何顺序运行,并确保即使在测试失败的情况下也能清理(删除)后端数据。
除非您对实现此功能的更好方法有任何建议,否则我认为最好的方法是使用JSforce从赛普拉斯测试文件中执行数据清理。
您可以cy.task为此使用:
cy.task
赛普拉斯/支持/index.js:
beforeEach(() => { cy.task('cleanUp'); });
赛普拉斯/插件/index.js:
module.exports = ( on ) => { on('task', { cleanUp () { // do your thing with your back-end } }); };
有关更多信息,请参阅我之前的回答。