mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
14 lines
305 B
TypeScript
14 lines
305 B
TypeScript
import { expect, Locator, Page } from '@playwright/test';
|
|
|
|
export class WelcomePage {
|
|
readonly page: Page;
|
|
readonly url: string;
|
|
readonly profileLink: Locator;
|
|
|
|
constructor(page: Page){
|
|
this.page = page;
|
|
this.url = './overview';
|
|
this.profileLink = page.locator('href=/profile');
|
|
}
|
|
}
|