We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb7829f commit f909021Copy full SHA for f909021
tests/e2e/testsLibrary/CodeExecutionTests.ts
@@ -108,6 +108,10 @@ export class CodeExecutionTests {
108
test(`Run command '${taskName}' expecting notification`, async () => {
109
await this.runTaskUsingQuickOpenContainer(taskName);
110
await this.ide.waitNotification(notificationText, timeout);
111
+ // Need delay because a test application is not accessible immediately - it needs time.
112
+ // Later can be improved (we can get and request the app. URL with axios until it is available)
113
+ // 7 sec is approximate value for most cases
114
+ await this.driverHelper.wait(7_000);
115
this.workspaceHandlingTests.setWindowHandle(await this.browserTabsUtil.getCurrentWindowHandle());
116
await this.ide.clickOnNotificationButton(notificationText, buttonText);
117
await this.driverHelper.wait(5_000);
0 commit comments