我正在使用karma来测试使用 JavaScript 完成的客户端代码。所以我有一个要加载的 html 文件,然后我想在我的测试脚本中从该 html 页面获取所有元素。
下面是karma.conf.js
我加载所有页面的页面代码。
// list of files / patterns to load in the browser
files = [
'node_modules/karma-jstd-adapter/jstd-adapter.js',
'testSetup.js',
'config.js',
'jquery.js',
'test.htm',
'startup.test.js'
];
test
在 test.htm 中有 'DIV' 具有 id 。我正在向其中动态添加内容DIV
。所以我需要验证,我想获取元素内容,但我无法做到这一点。