0

我们有一个像下面这样的块结构,我们想检查欢迎(abc_site)文本。但我们似乎无法捕捉到它。Dalekjs 一直说找到对象对象

<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>

我们如何正确地断言这一点?

谢谢

4

1 回答 1

0

将您的 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();
  }

};
于 2015-05-03T13:34:11.970 回答