mirror of
https://github.com/enso-org/enso.git
synced 2025-01-07 05:16:26 +03:00
83ec24da59
- PARTIALLY implements https://github.com/enso-org/cloud-v2/issues/1232 - Partially refactor E2E test actions into a state machine. - The main goal of this is to _disallow_ invalid actions - for example going from a page to itself, which will fail at runtime, or trying to create a new Data Link on a page where that button is not accessible. - An auxiliary goal is to have better namespacing of actions and better clarity: - Previously, everything was a locator at the top level of a single module. This makes it very difficult to comprehend what kinds of actions are available. - Note: There is also older `namespace`-based namespacing for the User and Organization settings pages, which were added before this refactor. They SHOULD be refactored to the new API, but I'm not sure whether it's worth spending the time right now. - Add E2E tests for every input on the "user" settings page and the "organization" settings page. - A skeletal E2E test for the Datalink modal has also been added - it does not actually test anything currently but should be sufficient for building upon. # Important Notes None
48 lines
1.4 KiB
TypeScript
48 lines
1.4 KiB
TypeScript
/** @file Actions for going to a different page. */
|
|
import type * as baseActions from './BaseActions'
|
|
import BaseActions from './BaseActions'
|
|
import DrivePageActions from './DrivePageActions'
|
|
import EditorPageActions from './EditorPageActions'
|
|
import SettingsPageActions from './SettingsPageActions'
|
|
|
|
// =======================
|
|
// === GoToPageActions ===
|
|
// =======================
|
|
|
|
/** Actions for going to a different page. */
|
|
export interface GoToPageActions {
|
|
readonly drive: () => DrivePageActions
|
|
readonly editor: () => EditorPageActions
|
|
readonly settings: () => SettingsPageActions
|
|
}
|
|
|
|
// =======================
|
|
// === goToPageActions ===
|
|
// =======================
|
|
|
|
/** Generate actions for going to a different page. */
|
|
export function goToPageActions(
|
|
step: (name: string, callback: baseActions.PageCallback) => BaseActions
|
|
): GoToPageActions {
|
|
return {
|
|
drive: () =>
|
|
step('Go to "Data Catalog" page', page =>
|
|
page
|
|
.getByRole('button')
|
|
.filter({ has: page.getByText('Data Catalog') })
|
|
.click()
|
|
).into(DrivePageActions),
|
|
editor: () =>
|
|
step('Go to "Spatial Analysis" page', page =>
|
|
page
|
|
.getByRole('button')
|
|
.filter({ has: page.getByText('Spatial Analysis') })
|
|
.click()
|
|
).into(EditorPageActions),
|
|
settings: () =>
|
|
step('Go to "settings" page', page => BaseActions.press(page, 'Mod+,')).into(
|
|
SettingsPageActions
|
|
),
|
|
}
|
|
}
|