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.
78 lines
2.0 KiB
78 lines
2.0 KiB
import { CellPageObject } from '.'; |
|
import BasePage from '../../../Base'; |
|
|
|
export class DateTimeCellPageObject 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 open({ index, columnHeader }: { index: number; columnHeader: string }) { |
|
await this.rootPage.locator('.nc-grid-add-new-cell').click(); |
|
|
|
await this.cell.dblclick({ |
|
index, |
|
columnHeader, |
|
}); |
|
} |
|
|
|
async save() { |
|
await this.rootPage.locator('button:has-text("Ok")').click(); |
|
} |
|
|
|
async selectDate({ |
|
// date formats in `YYYY-MM-DD` |
|
date, |
|
}: { |
|
date: string; |
|
}) { |
|
// title date format needs to be YYYY-MM-DD |
|
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({ |
|
// hour: 0 - 23 |
|
// minute: 0 - 59 |
|
// second: 0 - 59 |
|
hour, |
|
minute, |
|
second, |
|
}: { |
|
hour: number; |
|
minute: number; |
|
second?: number | null; |
|
}) { |
|
await this.rootPage |
|
.locator(`.ant-picker-time-panel-column:nth-child(1) > .ant-picker-time-panel-cell:nth-child(${hour + 1})`) |
|
.click(); |
|
await this.rootPage |
|
.locator(`.ant-picker-time-panel-column:nth-child(2) > .ant-picker-time-panel-cell:nth-child(${minute + 1})`) |
|
.click(); |
|
if (second != null) { |
|
await this.rootPage |
|
.locator(`.ant-picker-time-panel-column:nth-child(3) > .ant-picker-time-panel-cell:nth-child(${second + 1})`) |
|
.click(); |
|
} |
|
} |
|
|
|
async close() { |
|
await this.rootPage.keyboard.press('Escape'); |
|
} |
|
}
|
|
|