|
|
@ -2,8 +2,9 @@ const EventEmitter = require('events') |
|
|
|
|
|
|
|
|
|
|
|
class ClickLaunchIcon extends EventEmitter { |
|
|
|
class ClickLaunchIcon extends EventEmitter { |
|
|
|
command (icon) { |
|
|
|
command (icon) { |
|
|
|
this.api.waitForElementVisible('#icon-panel div[plugin="' + icon + '"]').click('#icon-panel div[plugin="' + icon + '"]').perform(() => { |
|
|
|
this.api.waitForElementVisible('#icon-panel div[plugin="' + icon + '"]').click('#icon-panel div[plugin="' + icon + '"]').perform((done) => { |
|
|
|
this.emit('complete') |
|
|
|
this.emit('complete') |
|
|
|
|
|
|
|
done() |
|
|
|
}) |
|
|
|
}) |
|
|
|
return this |
|
|
|
return this |
|
|
|
} |
|
|
|
} |
|
|
|