Skip to content

Commit

Permalink
chore: bumps playwright from 1.47.2 to 1.49.1 (#1241)
Browse files Browse the repository at this point in the history
* chore: bump playwright from 1.47.2 to 1.48.1

Bumps [playwright](https://github.com/microsoft/playwright) from 1.47.2 to 1.48.1.
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.47.2...v1.48.1)

---
updated-dependencies:
- dependency-name: playwright
  dependency-type: indirect
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* test(combo-box): remove opened before interaction

* test(combo-box): add timeout before query on interaction

* test(combo-box): import atimeout

* test(combo-box): query list item

* test(combo-box): remove lint

* test(combo-box): log list item

* test(combo-box): add expect output

* chore: update playwright 1.49.0

* test: use the new headless chrome with playwright

* test: revert debugging changes

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Napat Bualoy <[email protected]>
Co-authored-by: prima.s <[email protected]>
  • Loading branch information
4 people authored Dec 17, 2024
1 parent 8c283b2 commit 1eee4e3
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/actions/run-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ runs:
shell: bash
run: |
echo 'Installing Playwright'
npx playwright install --with-deps > /dev/null
npx playwright install --no-shell --with-deps > /dev/null
npx playwright --version
- name: Test
Expand Down
16 changes: 9 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion web-test-runner.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ export default {
product: 'chromium',
createBrowserContext: ({ browser }) => browser.newContext({ ignoreHTTPSErrors: true }),
launchOptions: {
args: ['--incognito', '--allow-insecure-localhost']
args: ['--incognito', '--allow-insecure-localhost'],
// opt for the new headless chrome - https://github.com/microsoft/playwright/issues/33566
channel: 'chromium'
}
}),
playwrightLauncher({
Expand Down

0 comments on commit 1eee4e3

Please sign in to comment.