test(editor): Add deprecation warnings for e2e page classes (no-changelog) (#12489)

This commit is contained in:
oleg
2025-01-08 09:36:44 +01:00
committed by GitHub
parent 491cb605e3
commit 803960e092
32 changed files with 200 additions and 57 deletions

View File

@@ -9,6 +9,14 @@ const workflowsPage = new WorkflowsPage();
const mainSidebar = new MainSidebar();
const settingsSidebar = new SettingsSidebar();
/**
* @deprecated Use functional composables from @composables instead.
* If a composable doesn't exist for your use case, please create a new one in:
* cypress/composables
*
* This class-based approach is being phased out in favor of more modular functional composables.
* Each getter and action in this class should be moved to individual composable functions.
*/
export class SettingsUsersPage extends BasePage {
url = '/settings/users';