使用这两种方法之间有什么区别:
cy.get('.wtv').find('.sub-wtv');
cy.get('.wtv').within(() => {cy.get('.sub-wtv');});
来自文档
https://docs.cypress.io/api/commands/find.html
https://docs.cypress.io/api/commands/within.html
它们都让我们可以使用“子 DOM”,在其中我们可以做任何我们想做的事情,比如搜索特定元素并断言它。
神不在的星期二
慕标琳琳
相关分类