etherpad-lite/src/tests/frontend-new/admin-spec/admintroubleshooting.spec.ts
SamTV12345 c2699e4528
Added playwright tests. (#6212)
* Added playwright tests.

* Added clear authorship color.

* Ported enter ts.

* Ported more tests.

* Commented helper tests.

* Fixed admin tests.

* Fixed.

* Fixed admin pages not there.

* Fixed waiting.

* Upload playwright report.

* Remove saucelabs

* Fixed waiting.

* Fixed upload artifact.

* Also install deps.

* Added retry mechanism.

* Added timeout for restart etherpad server.

* Fixed tests.

* Added frontend playwright tests.
2024-03-10 23:18:50 +01:00

39 lines
1.5 KiB
TypeScript

import {expect, test} from "@playwright/test";
import {loginToAdmin} from "../helper/adminhelper";
test.beforeEach(async ({ page })=>{
await loginToAdmin(page, 'admin', 'changeme1');
await page.goto('http://localhost:9001/admin/help')
})
test('Shows troubleshooting page manager', async ({page}) => {
await page.goto('http://localhost:9001/admin/help')
await page.waitForSelector('.menu')
const menu = page.locator('.menu');
await expect(menu.locator('li')).toHaveCount(4);
})
test('Shows a version number', async function ({page}) {
await page.goto('http://localhost:9001/admin/help')
await page.waitForSelector('.menu')
const helper = page.locator('.help-block').locator('div').nth(1)
const version = (await helper.textContent())!.split('.');
expect(version.length).toBe(3)
});
test('Lists installed parts', async function ({page}) {
await page.goto('http://localhost:9001/admin/help')
await page.waitForSelector('.menu')
await page.waitForSelector('.innerwrapper ul')
const parts = page.locator('.innerwrapper ul').nth(1);
expect(await parts.textContent()).toContain('ep_etherpad-lite/adminsettings');
});
test('Lists installed hooks', async function ({page}) {
await page.goto('http://localhost:9001/admin/help')
await page.waitForSelector('.menu')
await page.waitForSelector('.innerwrapper ul')
const helper = page.locator('.innerwrapper ul').nth(2);
expect(await helper.textContent()).toContain('express');
});