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.
180 lines
6.4 KiB
180 lines
6.4 KiB
import { expect, Locator } from '@playwright/test'; |
|
import BasePage from '../../Base'; |
|
import { DashboardPage } from '..'; |
|
|
|
export class ExpandedFormPage extends BasePage { |
|
readonly dashboard: DashboardPage; |
|
readonly addNewTableButton: Locator; |
|
readonly copyUrlButton: Locator; |
|
readonly toggleCommentsButton: Locator; |
|
readonly duplicateRowButton: Locator; |
|
readonly deleteRowButton: Locator; |
|
|
|
constructor(dashboard: DashboardPage) { |
|
super(dashboard.rootPage); |
|
this.dashboard = dashboard; |
|
this.addNewTableButton = this.dashboard.get().locator('.nc-add-new-table'); |
|
this.copyUrlButton = this.dashboard.get().locator('.nc-copy-row-url:visible'); |
|
this.toggleCommentsButton = this.dashboard.get().locator('.nc-toggle-comments:visible'); |
|
this.duplicateRowButton = this.dashboard.get().locator('.nc-duplicate-row:visible'); |
|
this.deleteRowButton = this.dashboard.get().locator('.nc-delete-row:visible'); |
|
} |
|
|
|
get() { |
|
return this.dashboard.get().locator(`.nc-drawer-expanded-form`); |
|
} |
|
|
|
async click3DotsMenu(menuItem: string) { |
|
await this.get().locator('.nc-icon-transition.ant-dropdown-trigger').last().click(); |
|
|
|
// add delay; wait for the menu to appear |
|
await this.rootPage.waitForTimeout(500); |
|
|
|
const popUpMenu = await this.rootPage.locator('.ant-dropdown'); |
|
await popUpMenu.locator(`.ant-dropdown-menu-item:has-text("${menuItem}")`).click(); |
|
} |
|
|
|
async clickDuplicateRow() { |
|
await this.click3DotsMenu('Duplicate Row'); |
|
// wait for loader to disappear |
|
// await this.dashboard.waitForLoaderToDisappear(); |
|
await this.rootPage.waitForTimeout(2000); |
|
} |
|
|
|
async clickDeleteRow() { |
|
await this.click3DotsMenu('Delete Row'); |
|
await this.rootPage.locator('.ant-btn-primary:has-text("OK")').click(); |
|
} |
|
|
|
async isDisabledDuplicateRow() { |
|
const isDisabled = await this.duplicateRowButton; |
|
return await isDisabled.count(); |
|
} |
|
|
|
async isDisabledDeleteRow() { |
|
const isDisabled = await this.deleteRowButton; |
|
return await isDisabled.count(); |
|
} |
|
|
|
async getShareRowUrl() { |
|
await this.copyUrlButton.click(); |
|
await this.verifyToast({ message: 'Copied to clipboard' }); |
|
return await this.getClipboardText(); |
|
} |
|
|
|
async gotoUsingUrlAndRowId({ rowId }: { rowId: string }) { |
|
const url = await this.dashboard.rootPage.url(); |
|
const expandedFormUrl = '/' + url.split('/').slice(3).join('/').split('?')[0] + `?rowId=${rowId}`; |
|
await this.rootPage.goto(expandedFormUrl); |
|
await this.dashboard.waitForLoaderToDisappear(); |
|
} |
|
|
|
async fillField({ columnTitle, value, type = 'text' }: { columnTitle: string; value: string; type?: string }) { |
|
const field = this.get().locator(`[data-testid="nc-expand-col-${columnTitle}"]`); |
|
await field.hover(); |
|
switch (type) { |
|
case 'text': |
|
await field.locator('input').fill(value); |
|
break; |
|
case 'geodata': { |
|
const [lat, long] = value.split(','); |
|
await this.rootPage.locator(`[data-testid="nc-geo-data-set-location-button"]`).click(); |
|
await this.rootPage.locator(`[data-testid="nc-geo-data-latitude"]`).fill(lat); |
|
await this.rootPage.locator(`[data-testid="nc-geo-data-longitude"]`).fill(long); |
|
await this.rootPage.locator(`[data-testid="nc-geo-data-save"]`).click(); |
|
break; |
|
} |
|
case 'belongsTo': |
|
await field.locator('.nc-action-icon').click(); |
|
await this.dashboard.linkRecord.select(value); |
|
break; |
|
case 'hasMany': |
|
case 'manyToMany': |
|
await field.locator(`[data-testid="nc-child-list-button-link-to"]`).click(); |
|
await this.dashboard.linkRecord.select(value); |
|
break; |
|
} |
|
} |
|
|
|
async save({ |
|
waitForRowsData = true, |
|
saveAndExitMode = true, |
|
}: { |
|
waitForRowsData?: boolean; |
|
saveAndExitMode?: boolean; |
|
} = {}) { |
|
if (!saveAndExitMode) { |
|
await this.get().locator('.nc-expand-form-save-btn .ant-dropdown-trigger').click(); |
|
const dropdownList = this.rootPage.locator('.nc-expand-form-save-dropdown-menu'); |
|
await dropdownList.locator('.ant-dropdown-menu-item:has-text("Save & Stay")').click(); |
|
} |
|
|
|
const saveRowAction = () => |
|
saveAndExitMode |
|
? this.get().locator('button:has-text("Save & Exit")').click() |
|
: this.get().locator('button:has-text("Save & Stay")').click(); |
|
|
|
if (waitForRowsData) { |
|
await this.waitForResponse({ |
|
uiAction: saveRowAction, |
|
requestUrlPathToMatch: 'api/v1/db/data/noco/', |
|
httpMethodsToMatch: ['GET'], |
|
responseJsonMatcher: json => json['pageInfo'], |
|
}); |
|
} else { |
|
await this.waitForResponse({ |
|
uiAction: saveRowAction, |
|
requestUrlPathToMatch: 'api/v1/db/data/noco/', |
|
httpMethodsToMatch: ['POST'], |
|
}); |
|
} |
|
|
|
if (!saveAndExitMode) { |
|
await this.get().press('Escape'); |
|
} |
|
|
|
await this.get().waitFor({ state: 'hidden' }); |
|
await this.verifyToast({ message: `updated successfully.` }); |
|
await this.rootPage.locator('[data-testid="grid-load-spinner"]').waitFor({ state: 'hidden' }); |
|
} |
|
|
|
async verify({ header, url }: { header: string; url?: string }) { |
|
await expect(this.get().locator(`.nc-expanded-form-header`).last()).toContainText(header); |
|
if (url) { |
|
await expect.poll(() => this.rootPage.url()).toContain(url); |
|
} |
|
} |
|
|
|
async escape() { |
|
await this.rootPage.keyboard.press('Escape'); |
|
await this.get().waitFor({ state: 'hidden' }); |
|
} |
|
|
|
async close() { |
|
await this.click3DotsMenu('Close'); |
|
} |
|
|
|
async openChildCard(param: { column: string; title: string }) { |
|
const childList = await this.get().locator(`[data-testid="nc-expand-col-${param.column}"]`); |
|
await childList.locator(`.ant-card:has-text("${param.title}")`).click(); |
|
} |
|
|
|
async verifyCount({ count }: { count: number }) { |
|
return await expect(this.rootPage.locator(`.nc-drawer-expanded-form .ant-drawer-content`)).toHaveCount(count); |
|
} |
|
|
|
async validateRoleAccess(param: { role: string }) { |
|
if (param.role === 'commenter' || param.role === 'viewer') { |
|
await expect(await this.get().locator('button:has-text("Save & Exit")')).toBeDisabled(); |
|
} else { |
|
await expect(await this.get().locator('button:has-text("Save & Exit")')).toBeEnabled(); |
|
} |
|
if (param.role === 'viewer') { |
|
await expect(await this.toggleCommentsButton).toHaveCount(0); |
|
} else { |
|
await expect(await this.toggleCommentsButton).toHaveCount(1); |
|
} |
|
// press escape to close the expanded form |
|
await this.rootPage.keyboard.press('Escape'); |
|
} |
|
}
|
|
|