Skip to content

Instantly share code, notes, and snippets.

@zac11
Created November 19, 2022 10:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zac11/84278050b9af952979a20fb19be91423 to your computer and use it in GitHub Desktop.
Save zac11/84278050b9af952979a20fb19be91423 to your computer and use it in GitHub Desktop.
Element inside open shadow root
import { chromium,test } from "@playwright/test";
test.use({ viewport: { width: 1400, height: 1000 } });
test('Launch the Selectors hub test page',async()=>{
const browser = await chromium.launch({
headless: false
});
const context = await browser.newContext();
const page = await context.newPage();
await page.goto("https://selectorshub.com/xpath-practice-page/");
await page.waitForSelector('.dropbtn',{
state: "visible"
});
await page.locator('#userName #kils').fill('kancha cheena');
// another way of doing this is
await page.locator("#userName").getByPlaceholder("enter name").fill("kancha cheena");
await page.waitForTimeout(5000);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment