You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.4 KiB
TypeScript
43 lines
1.4 KiB
TypeScript
import { _electron, expect, Page, test } from '@playwright/test';
|
|
import { openAppAndWait } from './setup/open';
|
|
import { forceCloseAllWindows } from './setup/beforeEach';
|
|
import { newUser } from './setup/new_user';
|
|
import { clickOnTestIdWithText, waitForTestIdWithText } from './utils';
|
|
|
|
let window: Page | undefined;
|
|
|
|
test.afterEach(async () => {
|
|
if (window) {
|
|
await forceCloseAllWindows([window]);
|
|
}
|
|
});
|
|
|
|
test('Change profile picture/avatar', async () => {
|
|
window = await openAppAndWait(`1`);
|
|
|
|
await newUser(window, 'userA');
|
|
// Open profile
|
|
await clickOnTestIdWithText(window, 'leftpane-primary-avatar');
|
|
// Click on current profile picture
|
|
|
|
await waitForTestIdWithText(window, 'copy-button-profile-update', 'Copy');
|
|
|
|
await clickOnTestIdWithText(window, 'image-upload-section');
|
|
await clickOnTestIdWithText(window, 'save-button-profile-update');
|
|
await waitForTestIdWithText(window, 'loading-spinner');
|
|
|
|
await waitForTestIdWithText(window, 'copy-button-profile-update', 'Copy');
|
|
await clickOnTestIdWithText(window, 'modal-close-button');
|
|
|
|
const leftpaneAvatarContainer = await waitForTestIdWithText(
|
|
window,
|
|
'img-leftpane-primary-avatar'
|
|
);
|
|
const screenshot = await leftpaneAvatarContainer.screenshot({
|
|
type: 'jpeg',
|
|
// path: 'avatar-updated-blue',
|
|
});
|
|
|
|
expect(screenshot).toMatchSnapshot({ name: 'avatar-updated-blue.jpeg' });
|
|
});
|