mirror of
https://github.com/ansible/awx.git
synced 2026-03-10 14:09:28 -02:30
70 lines
2.6 KiB
JavaScript
70 lines
2.6 KiB
JavaScript
import { getUpdatedProject } from '../fixtures';
|
|
|
|
const data = {};
|
|
|
|
module.exports = {
|
|
before: (client, done) => {
|
|
getUpdatedProject('test-actions')
|
|
.then(obj => { data.project = obj; })
|
|
.then(done);
|
|
},
|
|
'copy project': client => {
|
|
const projects = client.page.projects();
|
|
|
|
client.useCss();
|
|
client.resizeWindow(1200, 800);
|
|
client.login();
|
|
client.waitForAngular();
|
|
|
|
projects.load();
|
|
projects.waitForElementVisible('div.spinny');
|
|
projects.waitForElementNotVisible('div.spinny');
|
|
|
|
projects.section.list.expect.element('smart-search').visible;
|
|
projects.section.list.section.search.expect.element('@input').enabled;
|
|
|
|
projects.section.list.section.search
|
|
.sendKeys('@input', `id:>${data.project.id - 1} id:<${data.project.id + 1}`)
|
|
.sendKeys('@input', client.Keys.ENTER);
|
|
|
|
projects.waitForElementVisible('div.spinny');
|
|
projects.waitForElementNotVisible('div.spinny');
|
|
|
|
projects.section.list.expect.element('@badge').text.equal('1');
|
|
projects.expect.element(`#projects_table tr[id="${data.project.id}"]`).visible;
|
|
projects.expect.element('i[class*="copy"]').visible;
|
|
projects.expect.element('i[class*="copy"]').enabled;
|
|
|
|
projects.click('i[class*="copy"]');
|
|
projects.waitForElementVisible('div.spinny');
|
|
projects.waitForElementNotVisible('div.spinny');
|
|
|
|
const activityStream = 'bread-crumb > div i[class$="icon-activity-stream"]';
|
|
const activityRow = '#activities_table tr td[class*="description-column"] a';
|
|
const toast = 'div[class="Toast-icon"]';
|
|
|
|
projects.waitForElementNotPresent(toast);
|
|
projects.expect.element(activityStream).visible;
|
|
projects.expect.element(activityStream).enabled;
|
|
projects.click(activityStream);
|
|
projects.waitForElementVisible('div.spinny');
|
|
projects.waitForElementNotVisible('div.spinny');
|
|
|
|
client
|
|
.waitForElementVisible(activityRow)
|
|
.click(activityRow);
|
|
|
|
projects.waitForElementVisible('div.spinny');
|
|
projects.waitForElementNotVisible('div.spinny');
|
|
|
|
projects.expect.element('#project_form').visible;
|
|
projects.section.edit.expect.element('@title').visible;
|
|
projects.section.edit.expect.element('@title').text.contain(data.project.name);
|
|
projects.section.edit.expect.element('@title').text.not.equal(data.project.name);
|
|
projects.expect.element('@save').visible;
|
|
projects.expect.element('@save').enabled;
|
|
|
|
client.end();
|
|
}
|
|
};
|