fix: update E2E selector for chip remove button after PrimeVue removal

This commit is contained in:
dante01yoon
2026-03-26 21:15:38 +09:00
parent e7df1f7c13
commit 0344fea717

View File

@@ -85,7 +85,10 @@ export class ComfyNodeSearchBox {
}
async removeFilter(index: number) {
await this.filterChips.nth(index).locator('.p-chip-remove-icon').click()
await this.filterChips
.nth(index)
.getByRole('button', { name: 'Remove' })
.click()
}
/**