14得票6回答
找不到'cypress'的类型定义文件。

尝试将 cypress-xpath 安装到 Cypress 项目中(在 cypress/support/index.js 中添加 require('cypress-xpath'))时,如果已安装了 cypress-cucumber-preprocessor,则会在 plugins > inde...

9得票4回答
Cypress和cucumber-preprocessor升级后,Cucumber标签无法使用。

我把 Cypress 从 9.5.2 升级到了 10.3.0,之前我使用的是 cypress-cucumber-preprocessor:4.3.1,现在我将它升级到了 @badeball/cypress-cucumber-preprocessor:^11.4.0。 在升级前,我使用 cyp...

8得票1回答
Cypress获取包含子元素的元素

我正在尝试在表格中查找包含特定文本的行,使用 cy.contains()。 我不能这样做: cy.get("tr").contains("specific text") 那会返回包含文本的 span 元素 我无法做到 cy.get("tr").contains("specific ...