UNPKG

@christian-bromann/webdriverio

Version:

A nodejs bindings implementation for selenium 2.0/webdriver

11 lines (10 loc) 251 B
module.exports = { searchGoogle: function (searchString) { return this .url('http://www.google.com') .click('input[name="q"]') .keys(searchString) .pause(2000) .keys(['Enter']); //press Enter Key } };