我想在带有require字段的文件中添加logInPageTest.js,但是当我添加它时,它会抛出此错误。
module.js:472
throw err;
^
Error: Cannot find module './test-cases/logInPageTest.js'
at Function.Module._resolveFilename (module.js:470:15)
at Function.Module._load (module.js:418:25)
at Module.require (module.js:498:17)
at require (internal/module.js:20:19)
at Object.<anonymous> (/home/app/PycharmProjects/AutomationAppTesting/automationTest/index.js:15:15)
at Module._compile (module.js:571:32)
at Object.Module._extensions..js (module.js:580:10)
at Module.load (module.js:488:32)
at tryModuleLoad (module.js:447:12)
at Function.Module._load (module.js:439:3)
层次结构如下:
-AutomationAppTesting
--automaitonTest
---test-cases
----logInPageTest.js
---index.js
这是我在index.js文件中的代码:
require('./test-cases/logInPageTest.js')
logInPageTest.js文件中的代码:
var wd = require('wd');
var assert = require('assert');
module.exports = function (browser, next) {
maximizeWindow(browser, next);
}
function maximizeWindow(browser, next) {
browser .windowHandle( function (err, handle) {
browser.maximize(handle);
})
}
那么,我应该如何给出解决错误的路径。