|
1 |
| -import { expect, test } from "@playwright/test"; |
2 |
| -import { anvilTabs } from "./anvil-tabs"; |
3 |
| - |
4 |
| -const pageCountRegex = /Page [0-9]+ of [0-9]+/; |
5 |
| -const BackButtonTestID = "WestRoundedIcon"; |
6 |
| -const ForwardButtonTestID = "EastRoundedIcon"; |
7 |
| - |
8 |
| -test.beforeEach(async ({ page }) => { |
9 |
| - // Navigate to the Donors page |
10 |
| - await page.goto(anvilTabs.donors.url); |
11 |
| - await expect( |
12 |
| - page.getByRole("tab").getByText(anvilTabs.donors.tabName) |
13 |
| - ).toBeVisible(); |
14 |
| -}); |
| 1 | +import { test } from "@playwright/test"; |
| 2 | +import { |
| 3 | + filterAndTestLastPagePagination, |
| 4 | + testFirstPagePagination, |
| 5 | + testPaginationContent, |
| 6 | +} from "../testFunctions"; |
| 7 | +import { anvilFilterNames, anvilTabs, FILE_FORMAT_INDEX } from "./anvil-tabs"; |
15 | 8 |
|
16 | 9 | test("Check first page has disabled back and enabled forward pagination buttons on Donors Page", async ({
|
17 | 10 | page,
|
18 | 11 | }) => {
|
19 |
| - // Should start on first page |
20 |
| - await expect(page.getByText(pageCountRegex, { exact: true })).toHaveText( |
21 |
| - /Page 1 of [0-9]+/ |
22 |
| - ); |
23 |
| - // Forward button should start enabled |
24 |
| - await expect( |
25 |
| - page |
26 |
| - .getByRole("button") |
27 |
| - .filter({ has: page.getByTestId(ForwardButtonTestID) }) |
28 |
| - ).toBeEnabled(); |
29 |
| - // Back Button should start disabled |
30 |
| - await expect( |
31 |
| - page.getByRole("button").filter({ has: page.getByTestId(BackButtonTestID) }) |
32 |
| - ).toBeDisabled(); |
| 12 | + await testFirstPagePagination(page, anvilTabs.donors); |
33 | 13 | });
|
34 | 14 |
|
35 |
| -test("Check that forward pagination increments the current page and that page count stays static for the first five pages on the donors tab", async ({ |
| 15 | +test("Paginate through the entire Files tab to confirm that the page number stays consistent and that paginating forwards is disabled on the last page. Uses filters to reduce the amount of calls necessary", async ({ |
36 | 16 | page,
|
37 | 17 | }) => {
|
38 | 18 | test.setTimeout(500000);
|
39 |
| - // Should start on first page, and there should be multiple pages available |
40 |
| - await expect(page.getByText(pageCountRegex, { exact: true })).toHaveText( |
41 |
| - /Page 1 of [0-9]+/ |
42 |
| - ); |
43 |
| - await expect(page.getByText(pageCountRegex, { exact: true })).not.toHaveText( |
44 |
| - "Page 1 of 1" |
45 |
| - ); |
46 |
| - |
47 |
| - // Detect number of pages |
48 |
| - const SplitStartingPageText = ( |
49 |
| - await page.getByText(pageCountRegex, { exact: true }).innerText() |
50 |
| - ).split(" "); |
51 |
| - const max_pages = parseInt( |
52 |
| - SplitStartingPageText[SplitStartingPageText.length - 1] |
| 19 | + const result = await filterAndTestLastPagePagination( |
| 20 | + page, |
| 21 | + anvilTabs.files, |
| 22 | + anvilFilterNames[FILE_FORMAT_INDEX] |
53 | 23 | );
|
54 |
| - // Paginate forwards |
55 |
| - for (let i = 2; i < max_pages + 1; i++) { |
56 |
| - await page |
57 |
| - .getByRole("button") |
58 |
| - .filter({ has: page.getByTestId(ForwardButtonTestID) }) |
59 |
| - .click(); |
60 |
| - // Expect the page count to have incremented |
61 |
| - await expect(page.getByText(pageCountRegex, { exact: true })).toHaveText( |
62 |
| - `Page ${i} of ${max_pages}` |
63 |
| - ); |
| 24 | + if (!result) { |
| 25 | + test.fail(); |
64 | 26 | }
|
65 |
| - // Expect to be on the last page |
66 |
| - await expect(page.getByText(pageCountRegex, { exact: true })).toContainText( |
67 |
| - `Page ${max_pages} of ${max_pages}` |
68 |
| - ); |
69 |
| - // Expect the back button to be enabled on the last page |
70 |
| - await expect( |
71 |
| - page.getByRole("button").filter({ has: page.getByTestId(BackButtonTestID) }) |
72 |
| - ).toBeEnabled(); |
73 |
| - // Expect the forward button to be disabled |
74 |
| - await expect( |
75 |
| - page |
76 |
| - .getByRole("button") |
77 |
| - .filter({ has: page.getByTestId(ForwardButtonTestID) }) |
78 |
| - ).toBeDisabled(); |
| 27 | +}); |
| 28 | + |
| 29 | +test("Check forward and backwards pagination causes the page content to change on the Biosamples page", async ({ |
| 30 | + page, |
| 31 | +}) => { |
| 32 | + test.setTimeout(90000); |
| 33 | + await testPaginationContent(page, anvilTabs.biosamples); |
79 | 34 | });
|
0 commit comments