-
Notifications
You must be signed in to change notification settings - Fork 11
Labels
👩👧👦communityFeedbackFeedback from communityFeedback from community
Description
Which generators are affected?
- All
- HTML
- React
- Angular
- Vue
- Web components
- Power Apps
Reproduction case
Our component has a DBTag with onRemove prop.
const firstTagCloseBtn = filterPanelFirstTag.locator('.db-tab-remove-button');
await firstTagCloseBtn.click();
In previous versions of DB UX Design System this worked correctly. From v3.x.x we have to use
it with .hover() otherwise our tests fails because the click cannot be resolved.
const firstTagCloseBtn = filterPanelFirstTag.locator('.db-tab-remove-button');
await firstTagCloseBtn.hover();
await firstTagCloseBtn.click();
Debugging the DBTag component shows that there a JS style that sets the correct Tooltip position. We assume that playwright is faster than any animation and this leeds to the tooltip overlaying the remove button.
Metadata
Metadata
Assignees
Labels
👩👧👦communityFeedbackFeedback from communityFeedback from community
Type
Projects
Status
No status