forked from freeCodeCamp/freeCodeCamp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexit-exam-modal.spec.ts
96 lines (79 loc) · 2.54 KB
/
exit-exam-modal.spec.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
import { test, expect } from '@playwright/test';
import translations from '../client/i18n/locales/english/translations.json';
const examUrl =
'/learn/foundational-c-sharp-with-microsoft/foundational-c-sharp-with-microsoft-certification-exam/foundational-c-sharp-with-microsoft-certification-exam';
const cancelExamUrl =
'/learn/foundational-c-sharp-with-microsoft/#foundational-c-sharp-with-microsoft-certification-exam';
test.beforeEach(async ({ page }) => {
await page.goto(examUrl);
await page
.getByRole('button', {
name: translations.buttons['click-start-exam']
})
.click();
await page
.getByRole('button', {
name: translations.buttons['exit-exam']
})
.click();
});
test.describe('Exit exam Modal E2E Test Suite', () => {
test('Verifies the Correct Rendering of the Exit exam Modal', async ({
page
}) => {
await expect(
page.getByRole('dialog', { name: translations.learn.exam['exit-header'] })
).toBeVisible();
await expect(page.getByText(translations.learn.exam.exit)).toBeVisible();
await expect(
page.getByRole('button', {
name: translations.learn.exam['exit-yes']
})
).toBeVisible();
await expect(
page.getByRole('button', {
name: translations.buttons.close
})
).toBeVisible();
await expect(
page.getByRole('button', {
name: translations.learn.exam['exit-no']
})
).toBeVisible();
});
test('Closes the Exit exam Modal When the User clicks on exit-no button', async ({
page
}) => {
await page
.getByRole('button', { name: translations.learn.exam['exit-no'] })
.click();
await expect(
page.getByRole('dialog', { name: translations.learn.exam['exit-header'] })
).not.toBeVisible();
await expect(page).toHaveURL(examUrl);
});
test('Closes the Modal when the User clicks on exit-yes button', async ({
page
}) => {
await page
.getByRole('button', { name: translations.learn.exam['exit-yes'] })
.click();
await expect(
page.getByRole('dialog', { name: translations.learn.exam['exit-header'] })
).not.toBeVisible();
await expect(page).toHaveURL(cancelExamUrl);
});
test('Closes the Modal when the User clicks on X button', async ({
page
}) => {
await page
.getByRole('button', {
name: translations.buttons.close
})
.click();
await expect(
page.getByRole('dialog', { name: translations.learn.exam['exit-header'] })
).not.toBeVisible();
await expect(page).toHaveURL(examUrl);
});
});