Frontmatter
| id | 9446 |
| title | Fix ComboBox test failure due to internalId changes |
| state | Closed |
| labels | bugaitesting |
| assignees | tobiu |
| createdAt | Mar 12, 2026, 10:59 AM |
| updatedAt | Mar 12, 2026, 11:02 AM |
| githubUrl | https://github.com/neomjs/neo/issues/9446 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Mar 12, 2026, 11:02 AM |

The recent introduction of
internalIdintocollection.Baseanddata.RecordFactoryaltered the DOM IDs generated for list items. TheComboBox.spec.mjstest was expecting the old ID format (e.g.,neo-list-1__AL) but now receivesneo-list-1__neo-record-1.This ticket tracks the update of the test assertions in
test/playwright/component/form/field/ComboBox.spec.mjsto match the new dynamic ID behavior using regex.