Skip to content

Commit 77b402f

Browse files
allow limited values on pagination
Signed-off-by: Carlos Feria <2582866+carlosthe19916@users.noreply.github.com>
1 parent fc08513 commit 77b402f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

e2e/tests/ui/pages/Pagination.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export class Pagination {
2020
* Selects Number of rows per page on the table
2121
* @param perPage Number of rows
2222
*/
23-
async selectItemsPerPage(perPage: number) {
23+
async selectItemsPerPage(perPage: 10 | 20 | 50 | 100) {
2424
await this._pagination
2525
.locator(`//button[@aria-haspopup='listbox']`)
2626
.click();

0 commit comments

Comments
 (0)