first test
Playwright Tests / test (push) Successful in 5m57s

This commit is contained in:
2026-05-02 22:34:21 +02:00
parent 47114f85f2
commit e67a4a1edf
801 changed files with 228099 additions and 15 deletions
+16
View File
@@ -0,0 +1,16 @@
import { expect, type Locator, type Page } from '@playwright/test';
export class EndeavourosPage {
readonly page: Page;
readonly url: string = "https://endeavouros.cz/endeavouros.php";
readonly mainHeading: Locator;
constructor(page: Page) {
this.page = page;
this.mainHeading = page.getByText('Minimální systémové požadavky pro EndeavourOS:');
}
async navigate() {
await this.page.goto(this.url);
}
}