Skip to content

Commit

Permalink
chore(deps-dev): bump @playwright/test from 1.29.1 to 1.34.3 (#6391)
Browse files Browse the repository at this point in the history
* chore(deps-dev): bump @playwright/test from 1.29.1 to 1.34.3

Bumps [@playwright/test](https://github.com/Microsoft/playwright) from 1.29.1 to 1.34.3.
- [Release notes](https://github.com/Microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.29.1...v1.34.3)

---
updated-dependencies:
- dependency-name: "@playwright/test"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

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

* fix: get textarea for dropdown

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: LinHuiqing <[email protected]>
  • Loading branch information
2 people authored and KenLSM committed Jun 8, 2023
1 parent 5777d1e commit 53d99c0
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 18 deletions.
5 changes: 4 additions & 1 deletion __tests__/e2e/helpers/createForm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,10 @@ const addBasicField = async (
}
// Fall through to set "Options".
case BasicField.Dropdown:
await page.getByLabel('Options').fill(field.fieldOptions.join('\n'))
await page
.getByLabel('Options')
.first()
.fill(field.fieldOptions.join('\n'))
break
case BasicField.Date:
{
Expand Down
36 changes: 20 additions & 16 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.20.2",
"@opengovsg/mockpass": "^3.1.0",
"@playwright/test": "^1.29.1",
"@playwright/test": "^1.34.3",
"@types/bcrypt": "^5.0.0",
"@types/bluebird": "^3.5.38",
"@types/busboy": "^1.5.0",
Expand Down

0 comments on commit 53d99c0

Please sign in to comment.