-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Closed
Description
Context:
- Playwright Version: 0.15.0
- Operating System: Mac
- Node version: [e.g. 10.12, 10.14]
- Browser: Chromium
Code Snippet
const playwright = require("playwright");
(async () => {
const browser = await playwright.chromium.launch({ headless: false });
const page = await browser.newPage();
await page.goto("https://appannie.com/");
await page.click("text=Products");
await page.click("css=div:nth-of-type(6) >> text=Connect");
await page.click("text=Connect your apps for free");
})();
Describe the bug
The selector is not clicked on. When you manually hover over the menu the click proceeds.
TimeoutError: waiting for selector "css=div:nth-of-type(6) >> text=Connect" failed: timeout exceeded
Metadata
Metadata
Assignees
Labels
No labels