Skip to content

Commit a3cef8d

Browse files
committed
fix: specify hover position in PortalTableRow.openSettings() to prevent tooltip interference
The hover() method now receives specific coordinates to ensure consistent behavior when tooltips might otherwise interfere with the interaction.
1 parent 9443478 commit a3cef8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/packages/portal/pages/PortalPage/PortalTableRow.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export class PortalTableRow extends TableRow {
2121

2222
async openSettings(): Promise<void> {
2323
await report.step(`Open "${this.componentName}" settings`, async () => {
24-
await this.hover()
24+
await this.hover({ position: { x: 1, y: 1 } }) // to handle interfering tooltips
2525
await this.packageSettingsButton.click()
2626
})
2727
}

0 commit comments

Comments
 (0)