UNPKG

@testim/testim-cli

Version:

Command line interface for running Testing on you CI

14 lines (13 loc) 351 B
module.exports = { searchGoogle: function () { var searchString = arguments[0], callback = arguments[arguments.length - 1]; this .url('http://www.google.com') .click('input[name="q"]') .keys([searchString]) .pause(2000) .keys(['Enter']) //press Enter Key .call(callback); } };