We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e49bffb + 44ccd91 commit 29d1553Copy full SHA for 29d1553
1 file changed
e2e/logic/POM/codeGraph.ts
@@ -729,5 +729,10 @@ export default class CodeGraph extends BasePage {
729
}
730
await this.page.waitForTimeout(500);
731
732
+ const finalStatus = await this.canvasElement.getAttribute("data-engine-status");
733
+ if (finalStatus === "stopped") {
734
+ return;
735
+ }
736
+ throw new Error(`Canvas animation did not stop within ${timeout}ms; final status: "${finalStatus}"`);
737
738
0 commit comments