英文:
> (0 , _cypressCucumberPreprocessor.And) is not a function
问题
(0 , _cypressCucumberPreprocessor.And) is not a function
答案1
得分: 3
只是一个简单的疏忽,意味着你没有导入 And
- 任何在测试中使用的Cucumber关键字都需要导入。
import { Then, When, And } from "@badeball/cypress-cucumber-preprocessor"
英文:
It's just a simple oversight, it means you are missing an import for And
- any Cucumber keywords used in the test needs to be imported.
import { Then, When, And } from "@badeball/cypress-cucumber-preprocessor"
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论