-
Notifications
You must be signed in to change notification settings - Fork 5k
Closed
Closed
Copy link
Description
Thanks for writing in, @wadezone. I'm not exactly sure if I understand the issue but I was able to use the website that you've shared to play with the app a bit and write a starter script using with Playwright.
const { chromium } = require('playwright');
(async () => {
const browser = await chromium.launch({ headless: false });
const context = await browser.newContext();
const page = await context.newPage();
await page.goto('https://community.powerbi.com/t5/Data-Stories-Gallery/Customer-Analysis-Dashboard/td-p/630893#');
const frame = page.frame({ url: 'https://app.powerbi.com/view**' });
await frame.click('text="Weimei Corp"');
await frame.click('text="Weimei Corp"', {button: 'right'});
await frame.click('text="Copy"');
await frame.click('text="Copy value"');
await browser.close();
})();I was able to click on the selector with text="Weimei Corp and do some actions on the right-click context menu. Are you thinking of building something like this? If you have a specific question, please feel free to re-open the issue.
Originally posted by @arjun27 in #3915 (comment)
Metadata
Metadata
Assignees
Labels
No labels