mirror of
https://github.com/enso-org/enso.git
synced 2024-12-22 04:31:40 +03:00
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)
|
||
|
})
|
||
|
}
|
||
|
}
|