Skip to content

Commit 335b242

Browse files
committed
updaete: make work
1 parent aadaf99 commit 335b242

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

tests/cypress/support/widgets/JupyterLiteSession.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,10 @@ export default class JupyterLiteSession extends Widget {
186186
}
187187

188188
enterTextIntoInput(text: string) {
189-
this.iframeAnchor.setInputValue(SELECTORS.notebook.cell.stdin, text, true
190-
);
189+
this.iframeAnchor.setInputValue(SELECTORS.notebook.cell.stdin, text, true, {
190+
parseSpecialCharSequences: false,
191+
});
192+
193+
this.iframeAnchor.get(SELECTORS.notebook.cell.stdin).type("{enter}");
191194
}
192195
}

0 commit comments

Comments
 (0)