enso/app/dashboard/e2e/actions/StartModalActions.ts
2024-07-26 17:47:59 +10:00

30 lines
911 B
TypeScript

/** @file Actions for the "home" page. */
import * as actions from '../actions'
import BaseActions from './BaseActions'
import DrivePageActions from './DrivePageActions'
import EditorPageActions from './EditorPageActions'
// =========================
// === StartModalActions ===
// =========================
/** Actions for the "start" modal. */
export default class StartModalActions extends BaseActions {
/** Close this modal and go back to the Drive page. */
close() {
return this.step('Close "start" modal', (page) => page.getByLabel('Close').click()).into(
DrivePageActions,
)
}
/** Create a project from the template at the given index. */
createProjectFromTemplate(index: number) {
return this.step(`Create project from template #${index}`, (page) =>
actions
.locateSamples(page)
.nth(index + 1)
.click(),
).into(EditorPageActions)
}
}