2

我在功能测试中使用任何 dojo 模块时遇到问题,我一直看到window未定义的错误或未定义的错误document

我目前正在尝试使用dijit/registry类似的东西(到目前为止只导入它的模块)..

define([
    'intern!object',
    'intern/chai!assert',
    'require',
    'dijit/registry'
], function (registerSuite, assert, require, registry) {
    registerSuite({

        name: 'login',

        'load and login': function () {
            return this.remote.get(require.toUrl('http://application.co.uk/'))
                .elementById('input1')
                    .click()
                    .type("username")
                    .end()
                .elementById('input2')
                    .click()
                    .type("password")
                    .end()
                .elementById('rememberMe')
                    .click()
                    .end()
                .elementByName('Login.Submit')
                    .click()
                    .end()
                .wait(5000)
                .title()
                .then(function (title) {
                    assert.strictEqual(title, 'Application title');
                });
        }
    });
});

...并且从节点收到以下错误...

$ ./libs/intern/bin/intern-runner.js config=test/intern
Defaulting to "runner" reporter
Listening on 0.0.0.0:9000

c:/.../libs/dojo/_base/unload.js:6
var win = window;
          ^
ReferenceError: window is not defined
    at c:/.../libs/dojo/_base/unload.js:6:11
    at execModule (c:\...\libs\intern\node_modules\dojo\dojo.js:512:54)
    at c:\...\libs\intern\node_modules\dojo\dojo.js:501:12
    at Array.map (native)
    at execModule (c:\...\libs\intern\node_modules\dojo\dojo.js:496:17)
    at c:\...\libs\intern\node_modules\dojo\dojo.js:501:12
    at Array.map (native)
    at execModule (c:\...\libs\intern\node_modules\dojo\dojo.js:496:17)
    at c:\...\libs\intern\node_modules\dojo\dojo.js:501:12
    at Array.map (native)

我已经阅读了一个关于dojo/text!以类似方式使用的先前问题,这似乎表明实习生的 geezer 版本可以处理这个问题吗?

没有注册表模块,测试运行良好。

更新

好的,因此基于 C Snover 的响应,您不能利用dijit/registrywebdriver 方法之外的任何东西,execute()因为代码需要在 web 浏览器的上下文中而不是功能测试中。

4

2 回答 2

2

功能测试在 Node.js 中运行,而不是在浏览器环境中运行。如果你想访问dijit/registry你正在测试的页面中加载的实例,你需要使用execute在远程环境中运行一个函数:

return this.remote
  .get('http://application.co.uk')
  .execute(function () {
    // this function runs in the browser!

    var registry = require('dijit/registry');
    // ... do things with registry

    return something;
  })
  .then(function (something) {
    // this function runs inside the test runner!

    assert.isTrue(something);
  });

您将无法dijit/registry从功能测试模块定义具有 DOM 要求(如 )的依赖项。只有基于浏览器的单元测试模块才能加载此类依赖项。

于 2014-03-17T18:30:38.447 回答
0

还有 dijit-intern-helper -> https://github.com/SitePen/dijit-intern-helper

所以这

executeAsync(function (done) {
    require(['dijit/registry'], function (registry) {
        done(registry.byId('titlePane').titleBarNode);
    });
})
.then(function (node, setContext) {
    setContext(node);
})
.click()

变成

.then(dijit.nodeById('titlePane', 'titleBarNode'))
.click()

关于它的博客文章-> https://www.sitepen.com/blog/simplified-dijit-functional-testing/

于 2020-02-10T04:06:54.267 回答