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.
28 lines
869 B
28 lines
869 B
import { CellPageObject } from '.'; |
|
import BasePage from '../../../Base'; |
|
|
|
export class ButtonCellPageObject 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 select({ index, columnHeader }: { index: number; columnHeader: string }) { |
|
return this.cell.get({ index, columnHeader }); |
|
} |
|
|
|
async triggerWebhook({ index, columnHeader }: { index: number; columnHeader: string }) { |
|
await this.waitForResponse({ |
|
uiAction: () => this.get({ index, columnHeader }).getByTestId('nc-button-cell').click(), |
|
httpMethodsToMatch: ['POST'], |
|
requestUrlPathToMatch: /\/hooks/, |
|
responseStatusCodeToMatch: 201, |
|
}); |
|
} |
|
}
|
|
|