mirror of
https://github.com/goauthentik/authentik
synced 2026-04-27 18:07:15 +02:00
* Use project relative paths. * Fix tests. * Fix types. * Clean up admin imports. * Move admin import. * Remove or replace references to admin. * Typo fix. * Flesh out ak-modal, about modal. * Flesh out lazy modal. * Fix portal elements not using dialog scope. * Fix url parameters, wizards. * Fix invokers, lazy load. * Fix theming. * Add placeholders, help. * Flesh out command palette. Flesh out styles, command invokers. Continue clean up. Allow slotted content. Flesh out. * Flesh out edit invoker. Prep groups. * Fix odd labeling, legacy situations. * Prepare deprecation of table modal. Clean up serialization. * Tidy types. * Port provider select modal. * Port member select form. * Flesh out role modal. Fix loading state. * Port user group form. * Fix spellcheck. * Fix dialog detection. * Revise types. * Port rac launch modal. * Remove deprecated table modal. * Consistent form action placement. * Consistent casing. * Consistent alignment. * Use more appropriate description. * Flesh out icon. Fix alignment, colors. * Flesh out user search. * Consistent save button. * Clean up labels. * Reduce warning noise. * Clean up label. * Use attribute e2e expects. * Use directive. Fix lifecycle * Fix frequent un-memoized entries. * Fix up closedBy detection. * Tidy alignment. * Fix types, composition. * Fix labels, tests. * Fix up impersonation, labels. * Flesh out. Fix refresh after submit. * Flesh out basic modal test. * Fix ARIA. * Flesh out roles test. * Revise selectors. * Clean up selectors. * Fix impersonation labels, form references. * Fix messages appearing under modals. * Ensure reason is parsed. * Flesh out impersonation test. * Flesh out impersonate test. * Flesh out application tests. Clean up toolbar header, ARIA. * Flesh out wizard test. * Refine weight, order. * Fix up initial values, selectors. * Fix tests. * Fix selector.
49 lines
1.4 KiB
TypeScript
49 lines
1.4 KiB
TypeScript
import { PageFixture } from "#e2e/fixtures/PageFixture";
|
|
import type { LocatorContext } from "#e2e/selectors/types";
|
|
|
|
import { Page } from "@playwright/test";
|
|
|
|
export type GetByRoleParameters = Parameters<Page["getByRole"]>;
|
|
export type ARIARole = GetByRoleParameters[0];
|
|
export type ARIAOptions = GetByRoleParameters[1];
|
|
|
|
export type ClickByName = (name: string) => Promise<void>;
|
|
export type ClickByRole = (
|
|
role: ARIARole,
|
|
options?: ARIAOptions,
|
|
context?: LocatorContext,
|
|
) => Promise<void>;
|
|
|
|
export class PointerFixture extends PageFixture {
|
|
public static fixtureName = "Pointer";
|
|
|
|
/**
|
|
* A high-level click function that simplifies clicking on buttons and links.
|
|
*/
|
|
public click = (
|
|
name: string | RegExp,
|
|
optionsOrRole?: ARIAOptions | ARIARole,
|
|
context: LocatorContext = this.page,
|
|
): Promise<void> => {
|
|
if (typeof optionsOrRole === "string") {
|
|
const target = context.getByRole(optionsOrRole, { name }).first();
|
|
|
|
return target.click();
|
|
}
|
|
|
|
const options = {
|
|
exact: typeof name === "string",
|
|
...optionsOrRole,
|
|
name,
|
|
};
|
|
|
|
return (
|
|
context
|
|
// ---
|
|
.getByRole("button", options)
|
|
.or(context.getByRole("link", options))
|
|
.click()
|
|
);
|
|
};
|
|
}
|