2017-10-18 1 views
0

私はnodeとnightwatchが初めてで、ノードのインストール、npm、セレンスタンドアローン、セレンドライバの起動、ドライバも同じディレクトリに置いてください。私はconfファイルと簡単なテストケースjsを作成しました。私はノードのコマンドラインを通じてテストケースを実行するために行くとき、私はエラーを取得しておいてください。テストケースを実行しているときにノードエラー 'モジュールが見つかりません'

Error: Cannot find module 'C:\Users\x203946\tests' 

at Function.Module._resolveFilename (module.js:469:15) 
at Function.Module._load (module.js:417:25) 
at Module.runMain (module.js:604:10) 
at run (bootstrap_node.js:383:7) 
at startup (bootstrap_node.js:149:9) 
at bootstrap_node.js:496:3 

Nightwatch.js

{ 
"src_folders": ["tests"], 
"output_folder": "reports", 
"custom_commands_path": "", 
"custom_assertions_path": "", 
"page_objects_path": "pages", 
"globals_path": "globals", 

"selenium": { 
"start_process": true, 
"server_path": "node_modules/selenium-standalone/.selenium/selenium- 
server/", 
"log_path": "./reports", 
"host": "127.0.0.1", 
"port": 4444, 
"cli_args": { 
"webdriver.chrome.driver": "" 
} 
}, 
"test_settings": { 
"default": { 
"launch_url": "https://localhost", 
"selenium_port": 4444, 
"selenium_host": "localhost", 
"silent": true, 
"desiredCapabilities": { 
"browserName": "chrome", 
"javascriptEnabled": true, 
"acceptSslCerts": true 
} 
} 
} 
} 

Nightwatch.conf.js

require('babel-core/register'); 
const fs = require("fs"); 

module.exports = ((settings) => { 
const seleniumFileName = 
fs.readdirSync("node_modules/selenium-standalone/.selenium/selenium- 
server/"); 
settings.selenium.server_path += seleniumFileName; 
return settings; 
})(require("./nightwatch.json")); 

試験

module.exports = { 
'Does not show the task list if there are no tasks'(client) { 
client 
.url('http://todomvc.com/examples/react/#/') 
.waitForElementVisible('.header h1') 
.expect.element('.main').to.not.be.present; 
client.end(); 
}, 
+0

テストファイルのパス名とは何ですか?どのコマンドラインを使用していますか? –

+0

テストファイルはe2e/test/testpracticeにあります。ノードjsコマンドラインで実行しようとしています –

+0

これはNightwatchの問題ではないノードの問題のようです。 Nightwatchコードが実行されているというスタックトレースの証拠はありません。 Nightwatchを直接試してから、ノード設定をデバッグすることをお勧めします。サンプル: 'node_modules/nightwatch/bin/nightwatch e2e/test/testpractice.js' –

答えて

0

Nightwatch.jsで "tests"を指定しましたが、テストファイルが "test"ディレクトリにあるので、ディレクトリ "test"の名前を "tests"に変更すると少なくとも修正されます。また、設定ファイルnightwatch.jsonの名前を付けるべきだと思います。

関連する問題