mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-25 02:45:28 +00:00
delay by 200ms after refresh
This commit is contained in:
@@ -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') {
|
||||
|
||||
Reference in New Issue
Block a user