2024-06-20 19:19:01 +03:00
|
|
|
/** @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) {
|
2024-07-26 09:34:51 +03:00
|
|
|
return this.step('Interact with "name" input', async (page) => {
|
2024-06-20 19:19:01 +03:00
|
|
|
const locator = locateNewDataLinkModal(page).getByLabel('Name')
|
|
|
|
await callback(locator)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|