Merge pull request #10415 from nocodb/nc-fix/query-filter-parsing

fix : escape parentheses on filter from API
This commit is contained in:
Pranav C
2025-02-06 18:15:50 +05:30
committed by GitHub
14 changed files with 969 additions and 252 deletions

View File

@@ -103,6 +103,11 @@ export class TopbarPage extends BasePage {
await this.get().locator(`.nc-icon-reload`).waitFor({ state: 'visible' });
await this.get().locator(`.nc-icon-reload`).click();
await this.rootPage.waitForLoadState('networkidle');
await new Promise<void>(resolve => {
setTimeout(() => {
resolve();
}, 200);
});
}
async clickDownload(type: string, verificationFile = 'expectedData.txt') {