Files
awx/awx/ui/test/e2e/objects/sections/actions.js
2017-10-10 16:59:42 -04:00

16 lines
478 B
JavaScript

const actions = {
selector: 'td[class="List-actionsContainer"]',
elements: {
launch: 'i[class="fa icon-launch"]',
schedule: 'i[class="fa icon-schedule"]',
copy: 'i[class="fa icon-copy"]',
edit: 'i[class="fa icon-pencil"]',
delete: 'i[class="fa icon-trash-o"]',
view: 'i[class="fa fa-search-plus"]',
sync: 'i[class="fa fa-cloud-download"]',
test: 'i[class="fa fa-bell-o'
}
};
module.exports = actions;