mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
115 lines
4.6 KiB
115 lines
4.6 KiB
import { expect, Locator, Page } from '@playwright/test'; |
|
import BasePage from '../../Base'; |
|
import { getTextExcludeIconText } from '../../../tests/utils/general'; |
|
|
|
export class SurveyFormPage extends BasePage { |
|
readonly formHeading: Locator; |
|
readonly formSubHeading: Locator; |
|
readonly fillFormButton: Locator; |
|
readonly submitConfirmationButton: Locator; |
|
readonly submitButton: Locator; |
|
readonly nextButton: Locator; |
|
readonly nextSlideButton: Locator; |
|
readonly prevSlideButton: Locator; |
|
readonly darkModeButton: Locator; |
|
readonly formFooter: Locator; |
|
|
|
constructor(rootPage: Page) { |
|
super(rootPage); |
|
this.formHeading = this.get().locator('[data-testid="nc-survey-form__heading"]'); |
|
this.formSubHeading = this.get().locator('[data-testid="nc-survey-form__sub-heading"]'); |
|
this.fillFormButton = this.get().locator('[data-testid="nc-survey-form__fill-form-btn"]'); |
|
this.submitConfirmationButton = this.get().locator('[data-testid="nc-survey-form__btn-submit-confirm"]'); |
|
this.submitButton = this.rootPage.locator( |
|
'.nc-survery-form__confirmation_modal [data-testid="nc-survey-form__btn-submit"]' |
|
); |
|
this.nextButton = this.get().locator('[data-testid="nc-survey-form__btn-next"]'); |
|
this.nextSlideButton = this.get().locator('[data-testid="nc-survey-form__icon-next"]'); |
|
this.prevSlideButton = this.get().locator('[data-testid="nc-survey-form__icon-prev"]'); |
|
this.darkModeButton = this.get().locator('[data-testid="nc-form-dark-mode"]'); |
|
this.formFooter = this.get().locator('[data-testid="nc-survey-form__footer"]'); |
|
} |
|
|
|
get() { |
|
return this.rootPage.locator('html >> .nc-form-view'); |
|
} |
|
|
|
async validateHeaders({ heading, subHeading }: { heading: string; subHeading: string }) { |
|
await expect(this.get()).toBeVisible(); |
|
await expect(this.formHeading).toHaveText(heading); |
|
await expect(this.formSubHeading).toHaveText(subHeading); |
|
} |
|
|
|
async validate({ fieldLabel, footer }: { fieldLabel: string; footer: string }) { |
|
await expect(this.get()).toBeVisible(); |
|
|
|
await expect(this.formFooter).toHaveText(footer); |
|
|
|
const locator = this.get().locator(`[data-testid="nc-form-column-label"]`); |
|
let fieldText = await getTextExcludeIconText(locator); |
|
|
|
// replace whitespace with ' ' for fieldLabel & fieldText |
|
fieldLabel = fieldLabel.replace(/\u00A0/g, ' '); |
|
fieldText = fieldText.replace(/\u00A0/g, ' '); |
|
|
|
expect(fieldText).toBe(fieldLabel); |
|
|
|
// parse footer text ("1 / 3") to identify if last slide |
|
let isLastSlide = false; |
|
const footerText = await this.formFooter.innerText(); |
|
const slideNumber = footerText.split(' / ')[0]; |
|
const totalSlides = footerText.split(' / ')[1]; |
|
if (slideNumber === totalSlides) { |
|
isLastSlide = true; |
|
} |
|
if (isLastSlide) { |
|
await expect(this.submitConfirmationButton).toBeVisible(); |
|
} else { |
|
await expect(this.nextButton).toBeVisible(); |
|
} |
|
} |
|
|
|
async fill(param: { fieldLabel: string; type?: string; value?: string }) { |
|
await this.get().locator(`[data-testid="nc-survey-form__input-${param.fieldLabel}"]`).click(); |
|
if (param.type === 'SingleLineText') { |
|
await this.get().locator(`[data-testid="nc-survey-form__input-${param.fieldLabel}"] >> input`).fill(param.value); |
|
// press enter key |
|
await this.get().locator(`[data-testid="nc-survey-form__input-${param.fieldLabel}"] >> input`).press('Enter'); |
|
} else if (param.type === 'DateTime') { |
|
await this.get().locator(`[data-testid="nc-survey-form__input-${param.fieldLabel}"] >> input`).click(); |
|
const modal = this.rootPage.locator('.nc-picker-datetime'); |
|
await expect(modal).toBeVisible(); |
|
await modal.locator('.ant-picker-now-btn').click(); |
|
await modal.locator('.ant-picker-ok').click(); |
|
await this.nextButton.click(); |
|
} |
|
|
|
// post next button click, allow transitions to complete |
|
await this.rootPage.waitForTimeout(100); |
|
} |
|
|
|
async validateSuccessMessage(param: { message: string; showAnotherForm?: boolean }) { |
|
await this.get().locator('[data-testid="nc-survey-form__success-msg"]').waitFor({ state: 'visible' }); |
|
|
|
await expect( |
|
this.get().locator(`[data-testid="nc-survey-form__success-msg"]:has-text("${param.message}")`) |
|
).toBeVisible(); |
|
|
|
if (param.showAnotherForm) { |
|
await expect(this.get().locator(`button:has-text("Submit Another Form")`)).toBeVisible(); |
|
} |
|
} |
|
|
|
async clickFillForm() { |
|
await this.fillFormButton.click(); |
|
} |
|
|
|
async confirmAndSubmit() { |
|
await this.submitConfirmationButton.click(); |
|
await this.submitButton.waitFor({ state: 'visible' }); |
|
|
|
await this.submitButton.click(); |
|
|
|
await this.submitButton.waitFor({ state: 'hidden' }); |
|
} |
|
}
|
|
|