Skip to content

Commit

Permalink
test: support real key
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan_Chen committed Jul 30, 2024
1 parent 1140676 commit b5b03de
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/tests/src/utils/vscodeOperation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1301,7 +1301,10 @@ export async function createEnvironmentWithPython() {
await driver.sleep(Timeout.input);
await input.selectQuickPick("Python 3.11");
await driver.sleep(Timeout.input);
await input.selectQuickPick("src/requirements.txt");
console.log("select requirements.txt");
await driver
.findElement(By.css("dev.monaco-list-row[role='checkbox']"))
.click();
await driver.sleep(Timeout.input);
await VSBrowser.instance.takeScreenshot("selected requirements.txt");
await input.confirm();
Expand Down

0 comments on commit b5b03de

Please sign in to comment.