diff --git a/tests/playwright/pages/Dashboard/Details/FieldsPage.ts b/tests/playwright/pages/Dashboard/Details/FieldsPage.ts index 0f3946afcb..e26f765313 100644 --- a/tests/playwright/pages/Dashboard/Details/FieldsPage.ts +++ b/tests/playwright/pages/Dashboard/Details/FieldsPage.ts @@ -240,11 +240,11 @@ export class FieldsPage extends BasePage { async saveChanges() { await this.waitForResponse({ uiAction: async () => await this.saveChangesButton.click(), - requestUrlPathToMatch: 'api/v1/db/meta/views/', + requestUrlPathToMatch: 'api/v1/db/meta/tables/', httpMethodsToMatch: ['GET'], - responseJsonMatcher: json => json['list'], + responseJsonMatcher: json => json['hash'], }); - await this.rootPage.waitForTimeout(200); + await this.rootPage.waitForTimeout(1000); } getField({ title }: { title: string }) {