UNPKG

webdriverjs

Version:

A nodejs bindings implementation for selenium 2.0/webdriver

13 lines (8 loc) 300 B
module.exports = function elementIdClear (id, callback) { var requestOptions = { path:"/session/:sessionId/element/:id/clear", method:"POST" }; requestOptions.path = requestOptions.path.replace(/:id/gi, id); this.requestHandler.create(requestOptions,callback); };