
* test(user-interface): add tests with playwright * test: refactor UI configuration tests --------- Co-authored-by: Ali BARIN <ali.barin53@gmail.com>
22 lines
832 B
JavaScript
22 lines
832 B
JavaScript
const path = require('node:path');
|
|
const { expect } = require('@playwright/test');
|
|
const { BasePage } = require('./base-page');
|
|
const { LoginPage } = require('./login-page');
|
|
|
|
export class AuthenticatedPage extends BasePage {
|
|
/**
|
|
* @param {import('@playwright/test').Page} page
|
|
*/
|
|
constructor(page) {
|
|
super(page);
|
|
|
|
this.profileMenuButton = this.page.getByTestId('profile-menu-button');
|
|
this.adminMenuItem = this.page.getByRole('menuitem', { name: 'Admin' });
|
|
this.userInterfaceDrawerItem = this.page.getByTestId('user-interface-drawer-link');
|
|
this.appBar = this.page.getByTestId('app-bar');
|
|
this.goToDashboardButton = this.page.getByTestId('go-back-drawer-link');
|
|
this.typographyLogo = this.page.getByTestId('typography-logo');
|
|
this.customLogo = this.page.getByTestId('custom-logo');
|
|
}
|
|
}
|