Я пытаюсь выполнить jquery в Nightwatch и получаю сообщение об ошибке «ReferenceError: $ не определено». Вот мой тест Nightwatch. js файл ...
const $ = require('jquery')
module.exports = {
'Google\'s Search Functionality': function (browser) {
browser
.url('https://www.google.com/ncr')
.waitForElementPresent('body', 5000)
// .setValue('.gLFyf', 'Lambdatest\n')
.execute(function () { $('.gLFyf').val('Lambdatest\n'); })
.pause(1000)
.expect.title().to.contain('Google');
browser.end();
}
}