0

I installed all my software with npm.

But running mocha, it does not seem to find the webdriverjs module. The only way to make it work, is by providing the full module path like this:

var webdriverjs = require('/var/www/mysite/linux/node/lib/node_modules/webdriverjs'),
    client = {};

describe('my webdriverjs tests', function(){ ...

How can I make node modules path available to an application like mocha ?

Thanks

4

1 に答える 1

1

Grunt を使用する場合は、次のパッケージもインストールできます: https://github.com/webdriverjs/grunt-webdriver

Selenium スタンドアロン サーバーを起動し、ブラウザーのインスタンスを作成し、mocha テストを起動します。

于 2014-06-06T14:23:20.410 に答える