rallf-js-sdk
Version:
Toolset to create Tasks for RALLF
23 lines (18 loc) • 483 B
JavaScript
const rallf = require('../../../');
class BasicExample extends rallf.Task {
async warmup() {
this.logger.info('Warming up ' + this.name);
this.firefox = this.devices.get('firefox');
}
async start(input) {
this.logger.debug(this.fqtn + ' started');
return 'started';
}
async getTitle(input) {
return await this.firefox.getTitle();
}
async cooldown() {
this.logger.debug('cooldown');
}
}
module.exports = BasicExample;