n8n/packages/testing/playwright/pages/TemplateCredentialSetupPage.ts

58 lines
1.8 KiB
TypeScript

import type { Locator } from '@playwright/test';
import { BasePage } from './BasePage';
import { CredentialModal } from './components/CredentialModal';
export class TemplateCredentialSetupPage extends BasePage {
readonly credentialModal = new CredentialModal(this.page.getByTestId('editCredential-modal'));
getTitle(titleText: string): Locator {
return this.page.getByRole('heading', { name: titleText, level: 1 });
}
getInfoCallout(): Locator {
return this.page.getByTestId('info-callout');
}
getFormSteps(): Locator {
return this.page.getByTestId('setup-credentials-form-step');
}
getStepHeading(step: Locator): Locator {
return step.getByTestId('credential-step-heading');
}
getStepDescription(step: Locator): Locator {
return step.getByTestId('credential-step-description');
}
getSkipLink(): Locator {
return this.page.getByRole('link', { name: 'Skip' });
}
getContinueButton(): Locator {
return this.page.getByTestId('continue-button');
}
getCreateCredentialButton(appName: string): Locator {
return this.page.getByRole('button', { name: `Create new ${appName} credential` });
}
getMessageBox(): Locator {
// Using class selector as Element UI message box doesn't have semantic attributes
return this.page.locator('.el-message-box');
}
/** Opens credential creation modal and waits for it to be visible */
async openCredentialCreation(appName: string): Promise<void> {
await this.getCreateCredentialButton(appName).click();
await this.credentialModal.waitForModal();
}
/** Waits for the message box to appear and clicks the cancel button to dismiss it */
async dismissMessageBox(): Promise<void> {
const messageBox = this.getMessageBox();
await messageBox.waitFor({ state: 'visible' });
await messageBox.locator('.btn--cancel').click();
}
}