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.
21 lines
655 B
21 lines
655 B
import { expect } from "@playwright/test"; |
|
import { CellPageObject } from "."; |
|
import BasePage from "../../../Base"; |
|
|
|
export class RatingCellPageObject extends BasePage { |
|
readonly cell: CellPageObject; |
|
|
|
constructor(cell: CellPageObject) { |
|
super(cell.rootPage); |
|
this.cell = cell; |
|
} |
|
|
|
get({index, columnHeader}: {index?: number, columnHeader: string}) { |
|
return this.cell.get({index, columnHeader}); |
|
} |
|
|
|
async verify({index, columnHeader, rating}: {index?: number, columnHeader: string, rating: number}) { |
|
expect(await this.get({index, columnHeader}).locator(`div[role="radio"][aria-checked="true"]`).count()).toBe(rating); |
|
} |
|
|
|
} |