我想创建一个单一的方法,以在执行下一个测试步骤之前验证所有登录页面对象是否存在。以下是我目前拥有的,但正在寻找一种更清洁的方式来实现这一目标。任何建议,不胜感激。
verifyLandingPageNavElements:function(){
this.expect.element('@NavLogo_img')
.to.be.present.after(2000),
this.expect.element('@BuySearch_nav')
.to.be.present.after(2000),
this.expect.element('@Sell_nav')
.to.be.present.after(2000),
this.expect.element('@Appraise_nav')
.to.be.present.after(2000),
this.expect.element('@Products_nav')
.to.be.present.after(2000),
this.expect.element('@LocateADealer_nav')
.to.be.present.after(2000)
this.expect.element('@Search_nav')
.to.be.present.after(2000)
},
最佳答案
好的方法是为此创建一个自定义命令。
// ./lib/custom-commands/expectElementsToBePresent.js
exports.command = function(selectors, ms) {
selectors.forEach(selector => this.expect.element(selector).to.be.present.after(ms));
return this;
};
// Test case
client
.url('https://some.url')
.expectElementsToBePresent([
'.some.selector',
'.another.selector'
], 2000);
通过设置配置文件的
./lib/custom-commands
属性,不要忘记将Nightwatch指向保留自定义命令的目录(在我的示例中为custom_commands_path
)。如果您想了解有关自定义命令的更多信息,请访问以下官方文档链接:http://nightwatchjs.org/guide#writing-custom-commands
关于javascript - 如何合并多个this.expect语句,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48586555/