mirror of
https://github.com/ZwareBear/awx.git
synced 2026-03-25 18:23:37 -05:00
17 lines
429 B
JavaScript
17 lines
429 B
JavaScript
module.exports = {
|
|
url () {
|
|
return `${this.api.globals.launch_url}/#/activity_stream`;
|
|
},
|
|
commands: [{
|
|
load () {
|
|
this.api.url('data:,'); // https://github.com/nightwatchjs/nightwatch/issues/1724
|
|
return this.navigate();
|
|
},
|
|
}],
|
|
elements: {
|
|
title: '.List-titleText',
|
|
subtitle: '.List-titleLockup',
|
|
category: '#stream-dropdown-nav'
|
|
}
|
|
};
|