我们在下面有一个这样的块结构,我们想检查欢迎(abc_site)文本。但我们似乎无法捕捉到它。Dalekjs 一直说 Found Object 对象
<div id="login" style="display: block;">
<span class="simple-resource-header" id="welcomeText">Welcome <i>(abc_site)</i></span>
<button type="submit" id="submitButton" onclick="out();">Out</button>
</div>
我们如何正确地断言这一点?
谢谢
将 HTML 标记保存到 test.html
中,将其公开在 Web 服务器上并尝试以下 dalek 测试文件:
module.exports = {
'Welcome page': function (test) {
test
.open('.../test.html')
.assert.text('#welcomeText').is('Welcome (abc_site)', 'shows the welcome text')
.done();
}
};