As I explore the world of Playwright, I am faced with a challenge regarding testing a feature that involves a monaco editor. Unfortunately, my search in Playwright documentation and forums did not yield any relevant information.
Here is the test scenario I'm working on:
async ({ page }) => {
const testPage= new TestPage(page);
await testPage.navigateTo();
//dosomething
await page.waitForSelector(#monaco-editor-selector);
//Paste a script in monaco editor
}
I would greatly appreciate any assistance on this matter!