mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 04:05:42 +01:00
docs(e2e): Add parametric viewport example test
This commit is contained in:
parent
48e05710ae
commit
ef473d34f5
1 changed files with 19 additions and 11 deletions
|
@ -1,6 +1,6 @@
|
|||
// @ts-check
|
||||
import {expect} from '@playwright/test';
|
||||
import {test, login_user, save_visual, load_logged_in_context} from './utils_e2e.js';
|
||||
import {test, login_user, save_visual} from './utils_e2e.js';
|
||||
|
||||
test.beforeAll(async ({browser}, workerInfo) => {
|
||||
await login_user(browser, workerInfo, 'user2');
|
||||
|
@ -29,14 +29,22 @@ test('Register Form', async ({page}, workerInfo) => {
|
|||
save_visual(page);
|
||||
});
|
||||
|
||||
test('Logged In User', async ({browser}, workerInfo) => {
|
||||
const context = await load_logged_in_context(browser, workerInfo, 'user2');
|
||||
const page = await context.newPage();
|
||||
|
||||
await page.goto('/');
|
||||
|
||||
// Make sure we routed to the home page. Else login failed.
|
||||
await expect(page.url()).toBe(`${workerInfo.project.use.baseURL}/`);
|
||||
|
||||
save_visual(page);
|
||||
// eslint-disable-next-line playwright/no-skipped-test
|
||||
test.describe.skip('example with different viewports (not actually run)', () => {
|
||||
// only necessary when the default web / mobile devices are not enough.
|
||||
// If you need to use a single fixed viewport, you can also use:
|
||||
// test.use({viewport: {width: 400, height: 800}});
|
||||
// also see https://playwright.dev/docs/test-parameterize
|
||||
for (const width of [400, 1000]) {
|
||||
// do not actually run (skip) this test
|
||||
test(`Do x on width: ${width}px`, async ({page}) => {
|
||||
await page.setViewportSize({
|
||||
width,
|
||||
height: 800,
|
||||
});
|
||||
// do something, then check that an element is fully in viewport
|
||||
// (i.e. not overflowing)
|
||||
await expect(page.locator('#my-element')).toBeInViewport({ratio: 1});
|
||||
});
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue