mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-29 22:46:49 +00:00
test: date picker configuration
Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com>
This commit is contained in:
@@ -33,7 +33,18 @@ export class DateTimeCellPageObject extends BasePage {
|
||||
date: string;
|
||||
}) {
|
||||
// title date format needs to be YYYY-MM-DD
|
||||
await this.rootPage.locator(`td[title="${date}"]`).click();
|
||||
const [year, month, day] = date.split('-');
|
||||
|
||||
// configure year
|
||||
await this.rootPage.locator('.ant-picker-year-btn').click();
|
||||
await this.rootPage.locator(`td[title="${year}"]`).click();
|
||||
|
||||
// configure month
|
||||
await this.rootPage.locator('.ant-picker-month-btn').click();
|
||||
await this.rootPage.locator(`td[title="${year}-${month}"]`).click();
|
||||
|
||||
// configure day
|
||||
await this.rootPage.locator(`td[title="${year}-${month}-${day}"]`).click();
|
||||
}
|
||||
|
||||
async selectTime({
|
||||
|
||||
Reference in New Issue
Block a user