有什么方法可以知道一个元素是否使用Dalek.js聚焦



我正在搜索类似以下内容的内容:

assert.isFocused('input.myDefaultInput')

到目前为止,我能找到的唯一解决方法是

assert.exists('input.myDefaultInput:focus')

有没有更好的选择?

当前的 DalekJS 断言 API 没有测试元素是否具有焦点的方法。

以下帮助程序方法使用 execute 函数来断言元素是否具有使用本机 JavaScript 的焦点:

focused: function(test, selector, message) {
    return test
        .execute(function(selectorParam, messageParam){
            var expectedEl = window.document.querySelector(selectorParam);
            var activeEl = window.document.activeElement;
            this.assert.ok(expectedEl === activeEl, messageParam);
        }, selector, message);
}

我在这里的一篇博客文章中写了一篇更详细的文章:http://hady.geek.nz/blog/dalek-element-has-focus/

相关内容

  • 没有找到相关文章

最新更新