We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 533fd1c commit 36126a5Copy full SHA for 36126a5
browser_tests/tests/userSelectView.spec.ts
@@ -47,7 +47,7 @@ test.describe('User Select View', () => {
47
// Try to click first option if it exists
48
const firstOption = page.locator('.p-select-list .p-select-option').first()
49
50
- if (await firstOption.count() > 0) {
+ if ((await firstOption.count()) > 0) {
51
await firstOption.click()
52
} else {
53
// No options available - close dropdown and use new user input
0 commit comments