Skip to content

Commit a63d497

Browse files
committed
Add the markdown to be computed immediately and give some time to compute it
1 parent c9a6b45 commit a63d497

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/functional/page_objects/visual_builder_page.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,8 @@ export function VisualBuilderPageProvider({ getService, getPageObjects }: FtrPro
130130
public async enterMarkdown(markdown: string) {
131131
const input = await find.byCssSelector('.tvbMarkdownEditor__editor textarea');
132132
await this.clearMarkdown();
133-
await input.type(markdown, { charByChar: true });
134-
await PageObjects.visChart.waitForVisualizationRenderingStabilized();
133+
await input.type(markdown);
134+
await PageObjects.common.sleep(3000);
135135
}
136136

137137
public async clearMarkdown() {

0 commit comments

Comments
 (0)