我尝试使用此代码测试是否在Dalekjs文档中,断言示例是更正但在Chrome中不起作用。它预计它会在Chrome中运行而不是在Firefox中运行!我做错了什么,或者只是一个老例子。 求救!
module.exports = {
'MDE does its thing': function (test) {
test
.open('http://dalekjs.com/guineapig/')
.assert.dialogText().is.not('I am an prompt', 'Exterminate!')
.screenshot('test.png')
.done();
}
};
答案 0 :(得分:0)
我认为字符串应该是'我是一个提示':
.assert.dialogText().is.not('I am a prompt', 'Exterminate!')