Experimental The context to render to
The selector to highlight
Configuration for the dialog
await ShowContextualBubble(ctx,'h1', {
content: 'This is a tooltip',
successCondition: () => page.waitForSelector('#sc-active-cart', {timeout: 0}),
});
await ShowContextualBubble(ctx,'h1', {
content: 'This is a tooltip',
successCondition: () => page.waitForSelector('#sc-active-cart', {timeout: 0}),
placement: 'left',
});
Shows a floating bubble with highliter, and waits for a condition to resolve before proceeding Automatically.