We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03b5ae0 commit 4f26c23Copy full SHA for 4f26c23
tests/e2e/portal/3D_Anatomical.js
@@ -34,6 +34,17 @@ async function runTutorial () {
34
35
await tutorial.waitFor(10000, 'Some time for starting the service');
36
await utils.takeScreenshot(page, screenshotPrefix + 'service_started');
37
+
38
+ const entitiesListed = [
39
+ "EM_02mm.vtk",
40
+ "CellDatatoPointData1",
41
+ ];
42
+ for (const text of entitiesListed) {
43
+ const found = await utils.waitForLabelText(page, text);
44
+ if (!found) {
45
+ throw new Error(`Text "${text}" not visible on the page within timeout.`);
46
+ }
47
48
}
49
catch(err) {
50
await tutorial.setTutorialFailed();
0 commit comments