mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-28 03:16:16 -04:00
33 lines
1.1 KiB
TypeScript
33 lines
1.1 KiB
TypeScript
![]() |
import {expect, Page} from "@playwright/test";
|
||
|
|
||
|
export const loginToAdmin = async (page: Page, username: string, password: string) => {
|
||
|
|
||
|
await page.goto('http://localhost:9001/admin/');
|
||
|
|
||
|
await page.waitForSelector('input[name="username"]');
|
||
|
await page.fill('input[name="username"]', username);
|
||
|
await page.fill('input[name="password"]', password);
|
||
|
await page.click('input[type="button"]');
|
||
|
}
|
||
|
|
||
|
|
||
|
export const saveSettings = async (page: Page) => {
|
||
|
// Click save
|
||
|
await page.locator('.settings-button-bar').locator('button').first().click()
|
||
|
await page.waitForSelector('.ToastRootSuccess')
|
||
|
}
|
||
|
|
||
|
export const restartEtherpad = async (page: Page) => {
|
||
|
// Click restart
|
||
|
const restartButton = page.locator('.settings-button-bar').locator('.settingsButton').nth(1)
|
||
|
const settings = page.locator('.settings');
|
||
|
await expect(settings).not.toBeEmpty();
|
||
|
await expect(restartButton).toBeVisible()
|
||
|
await page.locator('.settings-button-bar')
|
||
|
.locator('.settingsButton')
|
||
|
.nth(1)
|
||
|
.click()
|
||
|
await page.waitForTimeout(500)
|
||
|
await page.waitForSelector('.settings')
|
||
|
}
|