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 ef92297 commit 94adee9Copy full SHA for 94adee9
tests/e2e/portal/3D_Anatomical.js
@@ -36,13 +36,14 @@ async function runTutorial () {
36
await tutorial.waitFor(10000, 'Some time for starting the service');
37
await utils.takeScreenshot(page, screenshotPrefix + 'service_started');
38
39
+ const iframe = await tutorial.getIframe(vtkNodeId);
40
const entitiesListed = [
41
"Vein.vtk",
42
"Artery.vtk",
43
"Bones.e",
44
];
45
for (const text of entitiesListed) {
- const found = await utils.waitForLabelText(page, text);
46
+ const found = await utils.waitForLabelText(iframe, text);
47
if (!found) {
48
throw new Error(`Text "${text}" not visible on the page within timeout.`);
49
}
0 commit comments