Skip to content

Commit

Permalink
test: revert fill on terminal; element is not an input
Browse files Browse the repository at this point in the history
  • Loading branch information
rjaegers committed Sep 27, 2024
1 parent 1cf5f3b commit 5d8b9de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .devcontainer/cpp/e2e/features/pages/codespace.pom.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export class CodespacePage {
await expect(this.page.locator('.terminal-widget-container')).toBeVisible();

for (const command of Array.isArray(commands) ? commands : [commands]) {
await this.terminal.fill(command);
await this.terminal.pressSequentially(command);
await this.terminal.press('Enter');
}
}
Expand Down

0 comments on commit 5d8b9de

Please sign in to comment.