Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Marriage testcase 7 #1024

Merged
merged 11 commits into from
Jul 29, 2024
18 changes: 14 additions & 4 deletions e2e/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,20 @@ export async function getToken(username: string, password: string) {
return verifyBody.token
}

export const goToSection = async (
page: Page,
section: 'child' | 'informant' | 'father' | 'mother' | 'documents' | 'preview'
) => {
type DeclarationSection =
| 'child'
| 'informant'
| 'father'
| 'mother'
| 'documents'
| 'preview'
| 'groom'
| 'bride'
| 'marriageEvent'
| 'witnessOne'
| 'witnessTwo'

export const goToSection = async (page: Page, section: DeclarationSection) => {
while (!page.url().includes(section)) {
await page.getByRole('button', { name: 'Continue' }).click()
}
Expand Down
97 changes: 97 additions & 0 deletions e2e/testcases/marriage/7-validate-witness-1-page.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
import { expect, test } from '@playwright/test'
import { createPIN, login, goToSection } from '../../helpers'

test.describe('7. Validate Witness 1 details page', () => {
test.beforeEach(async ({ page }) => {
await login(page, 'k.mweene', 'test')
await createPIN(page)
await page.click('#header_new_event')
await page.getByText('Marriage', { exact: true }).click()
await goToSection(page, 'witnessOne')
await goToSection(page, 'witnessOne')

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

test.beforeEach should end here

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Glad you noticed this!👌🏼

// 1.1. Enter Non-English characters
test('1.1. Validate "First Name(s)" text field', async ({ page }) => {
await page.locator('#firstNamesEng').fill('*')
await page.getByText('Witness 1 details').click()
await expect(page.locator('#firstNamesEng_error')).toHaveText(
`Input contains invalid characters. Please use only letters (a-z, A-Z), numbers (0-9), hyphens (-), apostrophes(') and underscores (_)`
)
})

// 1.2. Enter less than 33 English characters
test('1.2. Enter less than 33 English characters', async ({ page }) => {
await page.locator('#firstNamesEng').fill('Rakibul Islam')
await page.getByText('Witness 1 details').click()

await expect(page.locator('#firstNamesEng_error')).toBeHidden()
})

// 1.3. Enter Field as NULL
test('1.3. Enter Field as NULL', async ({ page }) => {
await page.locator('#firstNamesEng').click()
await page.locator('#relationship').click()
await expect(
page.getByText('Required for registration', { exact: true })
).toBeVisible()
})

// 1.4. Enter more than 32 English characters
test('1.4. Enter more than 32 English characters', async ({ page }) => {
const LONG_NAME = 'Ovuvuevuevue Enyetuenwuevue Ugbemugbem Osas'
await page.locator('#firstNamesEng').fill(LONG_NAME)
await page.getByText('Witness 1 details').click()

await expect(page.locator('#firstNamesEng')).toHaveValue(
LONG_NAME.slice(0, 32)
)
})

// 2.1. Enter Non-English characters
test('2.1. Validate "Last Name(s)" text field', async ({ page }) => {
await page.locator('#familyNameEng').fill('*')
await page.getByText('Witness 1 details').click()
await expect(page.locator('#familyNameEng_error')).toBeVisible()
})

// 2.2. Enter less than 33 English characters
test('2.2. Enter less than 33 English characters', async ({ page }) => {
await page.locator('#familyNameEng').fill('Rakibul Islam')
await page.getByText('Witness 1 details').click()

await expect(page.locator('#familyNameEng_error')).toBeHidden()
})

// 2.3. Enter Field as NULL
test('2.3. Enter Field as NULL', async ({ page }) => {
await page.locator('#familyNameEng').click()
await page.locator('#relationship').click()
await expect(
page.getByText('Required for registration', { exact: true })
).toBeVisible()
})

// 2.4. Enter more than 32 English characters
test('2.4. Enter more than 32 English characters', async ({ page }) => {
const LONG_NAME = 'Ovuvuevuevue Enyetuenwuevue Ugbemugbem Osas'
await page.locator('#familyNameEng').fill(LONG_NAME)
await page.getByText('Witness 1 details').click()

await expect(page.locator('#familyNameEng')).toHaveValue(
LONG_NAME.slice(0, 32)
)
})
test('3. Select any to the following option from Relationship to spouses:', async ({
page
}) => {
await page.locator('#relationship').click()
await page.getByText('Other', { exact: true }).click()
await expect(page.getByText('Other', { exact: true })).toBeVisible()
})
test('4. Click continue', async ({ page }) => {
await page.getByText('Continue', { exact: true }).click()
await expect(
page.getByText('Witness 2 details', { exact: true })
).toBeVisible()
})
})
Loading