当我 运行 链接到 PageObject 的测试时,赛普拉斯页面对象模型 Issue:Got 一条错误消息

Cypress Page Object Model Issue:Got an error message when I ran a test linked to PageObject

问题: 当我 运行 下面的代码时,我在 cypress 中收到一条错误消息。 错误消息“_HomePage.default.getNameBox 不是函数”

代码:

[![enter image description here][1]][1]
 

只是变量名中的大写字母有些问题。

而不是这个

const Homepage = new HomePage();    // Homepage is the instance
HomePage.getNameBox()               // uses the class not the instance

惯例是在实例的开头使用一个小字符

const homePage = new HomePage();
homePage.getNameBox()               // uses the instance