mirror of
https://github.com/enso-org/enso.git
synced 2024-12-21 17:21:37 +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
38 lines
1.3 KiB
TypeScript
38 lines
1.3 KiB
TypeScript
/** @file Actions for a "new Data Link" modal. */
|
|
import type * as test from 'playwright/test'
|
|
|
|
import type * as baseActions from './BaseActions'
|
|
import BaseActions from './BaseActions'
|
|
import DrivePageActions from './DrivePageActions'
|
|
|
|
// ==============================
|
|
// === locateNewDataLinkModal ===
|
|
// ==============================
|
|
|
|
/** Locate the "new data link" modal. */
|
|
function locateNewDataLinkModal(page: test.Page) {
|
|
return page.getByRole('heading').and(page.getByText('Create Datalink')).locator('..')
|
|
}
|
|
|
|
// ===============================
|
|
// === NewDataLinkModalActions ===
|
|
// ===============================
|
|
|
|
/** Actions for a "new Data Link" modal. */
|
|
export default class NewDataLinkModalActions extends BaseActions {
|
|
/** Cancel creating the new Data Link (don't submit the form). */
|
|
cancel() {
|
|
return this.step('Cancel out of "new data link" modal', async () => {
|
|
await this.press('Escape')
|
|
}).into(DrivePageActions)
|
|
}
|
|
|
|
/** Interact with the "name" input - for example, to set the name using `.fill("")`. */
|
|
withNameInput(callback: baseActions.LocatorCallback) {
|
|
return this.step('Interact with "name" input', async page => {
|
|
const locator = locateNewDataLinkModal(page).getByLabel('Name')
|
|
await callback(locator)
|
|
})
|
|
}
|
|
}
|