我試圖使用jQuery選擇與我Nightwatch.js端對端測試 根據這樣的回答:Nightwatch.js e2e測試如何在全局範圍內設置jQuery?
How to write a nightwatch custom command using jquery
我需要有jQuery的在我的應用程序的這種全球範圍內的工作提供。 (否則我與$(選擇)裁判麻煩......
'use strict';
var ClickElementByIndex = function(className, index) {
if (!index) {
index = 0;
}
this.execute(function(selector, i) {
var $item = $(selector + ':eq(' + i + ')');
if (!!$item) {
$item.click();
return true;
}
return false;
}, [className, index], function(result) {
console.info(result);
});
};
exports.command = ClickElementByIndex;
重複的問題請參閱答案。在https://stackoverflow.com/questions/21674080/how-to-use-npm-jquery-module – erwin