test:MM-T808 Redo in the Menu Bar (#1977)

This commit is contained in:
Suneet Srivastava 2022-02-02 23:03:40 +05:30 committed by GitHub
parent 6807019431
commit f7e2743b7e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -52,6 +52,34 @@ describe('edit_menu', function desc() {
} }
}); });
it('MM-T808 Redo in the Menu Bar', async () => {
if (process.platform === 'win32' || process.platform === 'linux') {
const mainWindow = this.app.windows().find((window) => window.url().includes('index'));
const loadingScreen = this.app.windows().find((window) => window.url().includes('loadingScreen'));
await loadingScreen.waitForSelector('.LoadingScreen', {state: 'hidden'});
const firstServer = this.serverMap[`${config.teams[0].name}___TAB_MESSAGING`].win;
await env.loginToMattermost(firstServer);
await firstServer.waitForSelector('#sidebarItem_suscipit-4');
// click on sint channel
await firstServer.click('#sidebarItem_suscipit-4');
await firstServer.click('#post_textbox');
await firstServer.type('#post_textbox', 'Mattermost');
await firstServer.click('#post_textbox');
await mainWindow.click('button.three-dot-menu');
robot.keyTap('e');
robot.keyTap('u');
const textAfterUndo = await firstServer.inputValue('#post_textbox');
textAfterUndo.should.be.equal('Mattermos');
await firstServer.click('#post_textbox');
await mainWindow.click('button.three-dot-menu');
robot.keyTap('e');
robot.keyTap('r');
const content = await firstServer.inputValue('#post_textbox');
content.should.be.equal('Mattermost');
}
});
it('MM-T812 Select All in the Menu Bar', async () => { it('MM-T812 Select All in the Menu Bar', async () => {
const mainWindow = this.app.windows().find((window) => window.url().includes('index')); const mainWindow = this.app.windows().find((window) => window.url().includes('index'));
const loadingScreen = this.app.windows().find((window) => window.url().includes('loadingScreen')); const loadingScreen = this.app.windows().find((window) => window.url().includes('loadingScreen'));