mirror of
https://github.com/appium/appium.git
synced 2026-01-14 22:30:14 -06:00
15 lines
396 B
JavaScript
15 lines
396 B
JavaScript
"use strict";
|
|
|
|
exports.configure = function (driver) {
|
|
// See whats going on
|
|
driver.on('status', function (info) {
|
|
console.log(info.cyan);
|
|
});
|
|
driver.on('command', function (meth, path, data) {
|
|
console.log(' > ' + meth.yellow, path.grey, data || '');
|
|
});
|
|
driver.on('http', function (meth, path, data) {
|
|
console.log(' > ' + meth.magenta, path, (data || '').grey);
|
|
});
|
|
};
|