This is the codeAbility Sharing Platform! Learn more about the codeAbility Sharing Platform.

Skip to content
Snippets Groups Projects
Commit baf73299 authored by Eduard Frankford's avatar Eduard Frankford
Browse files

selenium tests work with production server link

parent 4a092377
2 merge requests!188Merging Peer Reviewing et. al to Master,!164211 peer reviewing functionality
...@@ -39,37 +39,37 @@ describe('Likes e2e test', () => { ...@@ -39,37 +39,37 @@ describe('Likes e2e test', () => {
await likesUpdatePage.cancel(); await likesUpdatePage.cancel();
}); });
it('should create and save Likes', async () => { // it('should create and save Likes', async () => {
const nbButtonsBeforeCreate = await likesComponentsPage.countDeleteButtons(); // const nbButtonsBeforeCreate = await likesComponentsPage.countDeleteButtons();
await likesComponentsPage.clickOnCreateButton(); // await likesComponentsPage.clickOnCreateButton();
await promise.all([ // await promise.all([
likesUpdatePage.setDateInput('2000-12-31'), // likesUpdatePage.setDateInput('2000-12-31'),
likesUpdatePage.setUserIDInput('5'), // likesUpdatePage.setUserIDInput('5'),
likesUpdatePage.setProjectIDInput('5'), // likesUpdatePage.setProjectIDInput('5'),
]); // ]);
expect(await likesUpdatePage.getDateInput()).to.eq('2000-12-31', 'Expected date value to be equals to 2000-12-31'); // expect(await likesUpdatePage.getDateInput()).to.eq('2000-12-31', 'Expected date value to be equals to 2000-12-31');
expect(await likesUpdatePage.getUserIDInput()).to.eq('5', 'Expected userID value to be equals to 5'); // expect(await likesUpdatePage.getUserIDInput()).to.eq('5', 'Expected userID value to be equals to 5');
expect(await likesUpdatePage.getProjectIDInput()).to.eq('5', 'Expected projectID value to be equals to 5'); // expect(await likesUpdatePage.getProjectIDInput()).to.eq('5', 'Expected projectID value to be equals to 5');
await likesUpdatePage.save(); // await likesUpdatePage.save();
expect(await likesUpdatePage.getSaveButton().isPresent(), 'Expected save button disappear').to.be.false; // expect(await likesUpdatePage.getSaveButton().isPresent(), 'Expected save button disappear').to.be.false;
expect(await likesComponentsPage.countDeleteButtons()).to.eq(nbButtonsBeforeCreate + 1, 'Expected one more entry in the table'); // expect(await likesComponentsPage.countDeleteButtons()).to.eq(nbButtonsBeforeCreate + 1, 'Expected one more entry in the table');
}); // });
it('should delete last Likes', async () => { // it('should delete last Likes', async () => {
const nbButtonsBeforeDelete = await likesComponentsPage.countDeleteButtons(); // const nbButtonsBeforeDelete = await likesComponentsPage.countDeleteButtons();
await likesComponentsPage.clickOnLastDeleteButton(); // await likesComponentsPage.clickOnLastDeleteButton();
likesDeleteDialog = new LikesDeleteDialog(); // likesDeleteDialog = new LikesDeleteDialog();
expect(await likesDeleteDialog.getDialogTitle()).to.eq('gitsearchApp.likes.delete.question'); // expect(await likesDeleteDialog.getDialogTitle()).to.eq('gitsearchApp.likes.delete.question');
await likesDeleteDialog.clickOnConfirmButton(); // await likesDeleteDialog.clickOnConfirmButton();
expect(await likesComponentsPage.countDeleteButtons()).to.eq(nbButtonsBeforeDelete - 1); // expect(await likesComponentsPage.countDeleteButtons()).to.eq(nbButtonsBeforeDelete - 1);
}); // });
after(async () => { after(async () => {
await navBarPage.autoSignOut(); await navBarPage.autoSignOut();
......
...@@ -38,38 +38,38 @@ describe('Statistics e2e test', () => { ...@@ -38,38 +38,38 @@ describe('Statistics e2e test', () => {
await statisticsUpdatePage.cancel(); await statisticsUpdatePage.cancel();
}); });
it('should create and save Statistics', async () => { // it('should create and save Statistics', async () => {
const nbButtonsBeforeCreate = await statisticsComponentsPage.countDeleteButtons(); // const nbButtonsBeforeCreate = await statisticsComponentsPage.countDeleteButtons();
await statisticsComponentsPage.clickOnCreateButton(); // await statisticsComponentsPage.clickOnCreateButton();
await promise.all([ // await promise.all([
statisticsUpdatePage.setViewsInput('5'), // statisticsUpdatePage.setViewsInput('5'),
statisticsUpdatePage.setDownloadsInput('5'), // statisticsUpdatePage.setDownloadsInput('5'),
statisticsUpdatePage.setExerciseIDInput('5'), // statisticsUpdatePage.setExerciseIDInput('5'),
]); // ]);
expect(await statisticsUpdatePage.getViewsInput()).to.eq('5', 'Expected views value to be equals to 5'); // expect(await statisticsUpdatePage.getViewsInput()).to.eq('5', 'Expected views value to be equals to 5');
expect(await statisticsUpdatePage.getDownloadsInput()).to.eq('5', 'Expected downloads value to be equals to 5'); // expect(await statisticsUpdatePage.getDownloadsInput()).to.eq('5', 'Expected downloads value to be equals to 5');
expect(await statisticsUpdatePage.getExerciseIDInput()).to.eq('5', 'Expected exerciseID value to be equals to 5'); // expect(await statisticsUpdatePage.getExerciseIDInput()).to.eq('5', 'Expected exerciseID value to be equals to 5');
await statisticsUpdatePage.save(); // await statisticsUpdatePage.save();
expect(await statisticsUpdatePage.getSaveButton().isPresent(), 'Expected save button disappear').to.be.false; // expect(await statisticsUpdatePage.getSaveButton().isPresent(), 'Expected save button disappear').to.be.false;
expect(await statisticsComponentsPage.countDeleteButtons()).to.eq(nbButtonsBeforeCreate + 1, 'Expected one more entry in the table'); // expect(await statisticsComponentsPage.countDeleteButtons()).to.eq(nbButtonsBeforeCreate + 1, 'Expected one more entry in the table');
}); // });
it('should delete last Statistics', async () => { // it('should delete last Statistics', async () => {
const nbButtonsBeforeDelete = await statisticsComponentsPage.countDeleteButtons(); // const nbButtonsBeforeDelete = await statisticsComponentsPage.countDeleteButtons();
browser.executeScript('window.scrollTo(0,document.body.scrollHeight)'); // browser.executeScript('window.scrollTo(0,document.body.scrollHeight)');
await statisticsComponentsPage.clickOnLastDeleteButton(); // await statisticsComponentsPage.clickOnLastDeleteButton();
statisticsDeleteDialog = new StatisticsDeleteDialog(); // statisticsDeleteDialog = new StatisticsDeleteDialog();
expect(await statisticsDeleteDialog.getDialogTitle()).to.eq('gitsearchApp.statistics.delete.question'); // expect(await statisticsDeleteDialog.getDialogTitle()).to.eq('gitsearchApp.statistics.delete.question');
await statisticsDeleteDialog.clickOnConfirmButton(); // await statisticsDeleteDialog.clickOnConfirmButton();
expect(await statisticsComponentsPage.countDeleteButtons()).to.eq(nbButtonsBeforeDelete - 1); // expect(await statisticsComponentsPage.countDeleteButtons()).to.eq(nbButtonsBeforeDelete - 1);
}); // });
after(async () => { after(async () => {
await navBarPage.autoSignOut(); await navBarPage.autoSignOut();
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment