[ADF-3556] Create an automated test to cover sidebar position (#3788)

This commit is contained in:
jdosti
2018-09-14 12:51:41 +01:00
committed by Eugenio Romano
parent 9f00c923e9
commit a67263462c
2 changed files with 32 additions and 1 deletions

View File

@@ -148,4 +148,11 @@ describe('Header Component', () => {
navigationBarPage.checkLogoTooltip(names.logo_tooltip);
});
it('[C286297] Should be able to change the position of the sidebar menu', () => {
headerPage.sideBarPositionEnd();
headerPage.checkSidebarPositionEnd();
headerPage.sideBarPositionStart();
headerPage.checkSidebarPositionStart();
});
});