|
|
@ -1,10 +1,8 @@
|
|
|
|
import { _electron, Page, test } from '@playwright/test';
|
|
|
|
import { _electron, Page, test } from '@playwright/test';
|
|
|
|
import { cleanUpOtherTest, forceCloseAllWindows } from './setup/beforeEach';
|
|
|
|
import { forceCloseAllWindows } from './setup/beforeEach';
|
|
|
|
import { linkedDevice } from './setup/linked_device';
|
|
|
|
import { linkedDevice } from './setup/linked_device';
|
|
|
|
import { clickOnTestIdWithText, typeIntoInput, waitForTestIdWithText } from './utils';
|
|
|
|
import { clickOnTestIdWithText, typeIntoInput, waitForTestIdWithText } from './utils';
|
|
|
|
|
|
|
|
|
|
|
|
test.beforeEach(cleanUpOtherTest);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const windows: Array<Page> = [];
|
|
|
|
const windows: Array<Page> = [];
|
|
|
|
test.afterEach(() => forceCloseAllWindows(windows));
|
|
|
|
test.afterEach(() => forceCloseAllWindows(windows));
|
|
|
|
|
|
|
|
|
|
|
@ -12,13 +10,13 @@ test('linking device', async () => {
|
|
|
|
const { windowA1, windowA2, userA } = await linkedDevice();
|
|
|
|
const { windowA1, windowA2, userA } = await linkedDevice();
|
|
|
|
windows.push(windowA1, windowA2);
|
|
|
|
windows.push(windowA1, windowA2);
|
|
|
|
|
|
|
|
|
|
|
|
await clickOnTestIdWithText(windowA2, 'leftpane-primary-avatar');
|
|
|
|
await clickOnTestIdWithText(windowA1, 'leftpane-primary-avatar');
|
|
|
|
// Verify Username
|
|
|
|
// Verify Username
|
|
|
|
await waitForTestIdWithText(windowA2, 'your-profile-name', userA.userName);
|
|
|
|
await waitForTestIdWithText(windowA1, 'your-profile-name', userA.userName);
|
|
|
|
// Verify Session ID
|
|
|
|
// Verify Session ID
|
|
|
|
await waitForTestIdWithText(windowA2, 'your-session-id', userA.sessionid);
|
|
|
|
await waitForTestIdWithText(windowA1, 'your-session-id', userA.sessionid);
|
|
|
|
// exit profile module
|
|
|
|
// exit profile module
|
|
|
|
await clickOnTestIdWithText(windowA2, 'modal-close-button');
|
|
|
|
await clickOnTestIdWithText(windowA1, 'modal-close-button');
|
|
|
|
// You're almost finished isn't displayed
|
|
|
|
// You're almost finished isn't displayed
|
|
|
|
const errorDesc = 'Should not be found';
|
|
|
|
const errorDesc = 'Should not be found';
|
|
|
|
try {
|
|
|
|
try {
|
|
|
@ -46,6 +44,6 @@ test('linking device', async () => {
|
|
|
|
// Click on profile settings in window B
|
|
|
|
// Click on profile settings in window B
|
|
|
|
await clickOnTestIdWithText(windowA2, 'leftpane-primary-avatar');
|
|
|
|
await clickOnTestIdWithText(windowA2, 'leftpane-primary-avatar');
|
|
|
|
// Verify username has changed to new username
|
|
|
|
// Verify username has changed to new username
|
|
|
|
await waitForTestIdWithText(windowA2, 'your-profile-name', userA.userName);
|
|
|
|
await waitForTestIdWithText(windowA2, 'your-profile-name', newUsername);
|
|
|
|
// Check message is deleting on both devices
|
|
|
|
// Check message is deleting on both devices
|
|
|
|
});
|
|
|
|
});
|
|
|
|