mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-02 09:46:59 +00:00
fix(nc-gui): Update offset of LinkedRecords in accordance with links and unlinks (#7841)
* fix(nc-gui): update links * fix(nc-gui): update offset * fix(nc-gui): offset reset * fix: offset issue * fix: loading state not working * fix: tests * fix: failign tests * fix: update offset if same or greater than count
This commit is contained in:
@@ -68,7 +68,7 @@ export class ExpandedFormPage extends BasePage {
|
||||
}
|
||||
|
||||
async fillField({ columnTitle, value, type = 'text' }: { columnTitle: string; value: string; type?: string }) {
|
||||
const field = this.get().locator(`[data-testid="nc-expand-col-${columnTitle}"]`);
|
||||
const field = this.get().getByTestId(`nc-expand-col-${columnTitle}`);
|
||||
switch (type) {
|
||||
case 'text':
|
||||
await field.locator('input').fill(value);
|
||||
|
||||
Reference in New Issue
Block a user