mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2026-09-09 18:02:54 +00:00
[ACA-1653] add testrail ids to e2e tests (#557)
* add testrail ids - WIP * add TestRail ids to tooltips tests * added more TestRail ids * separate tests from Create folder to correct sub-suites * add more TestRail ids to automated tests * added more TestRail ids * added more ids and some missing tests * combined delete and undo delete tests and added TestRail ids * decrease protractor timeouts to try and speed up the execution when tests fail * disable some tests that are incomplete in order to match numbers from TestRail
This commit is contained in:
committed by
Denys Vuika
parent
f91608fe78
commit
b8cc5422f4
@@ -36,14 +36,14 @@ describe('Page titles', () => {
|
||||
xit('');
|
||||
|
||||
describe('on Login / Logout pages', () => {
|
||||
it('on Login page', () => {
|
||||
it('on Login page - [C217155]', () => {
|
||||
loginPage.load()
|
||||
.then(() => {
|
||||
expect(browser.getTitle()).toContain('Sign in');
|
||||
});
|
||||
});
|
||||
|
||||
it('after logout', () => {
|
||||
it('after logout - [C217156]', () => {
|
||||
loginPage.loginWithAdmin()
|
||||
.then(() => page.signOut())
|
||||
.then(() => {
|
||||
@@ -51,7 +51,7 @@ describe('Page titles', () => {
|
||||
});
|
||||
});
|
||||
|
||||
it('when pressing Back after Logout', () => {
|
||||
it('when pressing Back after Logout - [C280414]', () => {
|
||||
loginPage.loginWithAdmin()
|
||||
.then(() => page.signOut())
|
||||
.then(() => browser.navigate().back())
|
||||
@@ -71,7 +71,7 @@ describe('Page titles', () => {
|
||||
.then(done);
|
||||
});
|
||||
|
||||
it('Personal Files page', () => {
|
||||
it('Personal Files page - [C217157]', () => {
|
||||
const label = SIDEBAR_LABELS.PERSONAL_FILES;
|
||||
|
||||
page.sidenav.navigateToLinkByLabel(label)
|
||||
@@ -80,7 +80,7 @@ describe('Page titles', () => {
|
||||
});
|
||||
});
|
||||
|
||||
it('File Libraries page', () => {
|
||||
it('File Libraries page - [C217158]', () => {
|
||||
const label = SIDEBAR_LABELS.FILE_LIBRARIES;
|
||||
|
||||
page.sidenav.navigateToLinkByLabel(label)
|
||||
@@ -89,7 +89,7 @@ describe('Page titles', () => {
|
||||
});
|
||||
});
|
||||
|
||||
it('Shared Files page', () => {
|
||||
it('Shared Files page - [C217159]', () => {
|
||||
const label = SIDEBAR_LABELS.SHARED_FILES;
|
||||
|
||||
page.sidenav.navigateToLinkByLabel(label)
|
||||
@@ -98,7 +98,7 @@ describe('Page titles', () => {
|
||||
});
|
||||
});
|
||||
|
||||
it('Recent Files page', () => {
|
||||
it('Recent Files page - [C217160]', () => {
|
||||
const label = SIDEBAR_LABELS.RECENT_FILES;
|
||||
|
||||
page.sidenav.navigateToLinkByLabel(label)
|
||||
@@ -107,7 +107,7 @@ describe('Page titles', () => {
|
||||
});
|
||||
});
|
||||
|
||||
it('Favorites page', () => {
|
||||
it('Favorites page - [C217161]', () => {
|
||||
const label = SIDEBAR_LABELS.FAVORITES;
|
||||
|
||||
page.sidenav.navigateToLinkByLabel(label)
|
||||
@@ -116,7 +116,7 @@ describe('Page titles', () => {
|
||||
});
|
||||
});
|
||||
|
||||
it('Trash page', () => {
|
||||
it('Trash page - [C217162]', () => {
|
||||
const label = SIDEBAR_LABELS.TRASH;
|
||||
|
||||
page.sidenav.navigateToLinkByLabel(label)
|
||||
|
||||
Reference in New Issue
Block a user