Skip to content

Commit

Permalink
Fix playwright test
Browse files Browse the repository at this point in the history
  • Loading branch information
huchenlei committed Sep 28, 2024
1 parent aa1d179 commit 9a5c5c8
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions browser_tests/ComfyPage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -640,9 +640,10 @@ export class ComfyPage {
y: 645
}
})
await page.locator('input[type="text"]').click()
await page.locator('input[type="text"]').fill('128')
await page.locator('input[type="text"]').press('Enter')
const dialogInput = page.locator('.graphdialog input[type="text"]')
await dialogInput.click()
await dialogInput.fill('128')
await dialogInput.press('Enter')
await this.nextFrame()
}

Expand Down

0 comments on commit 9a5c5c8

Please sign in to comment.