Skip to content

Commit

Permalink
old playwright-extra has no :has-text?, now fails at page.frameLocator
Browse files Browse the repository at this point in the history
  • Loading branch information
vogler committed Dec 27, 2021
1 parent d44d84b commit ba97a0e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main.captcha.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,18 @@ chromium.use(RecaptchaPlugin(RecaptchaOptions));
const page = await context.newPage();
await page.goto('https://www.epicgames.com/store/en-US/free-games');
// await expect(page.locator('a[role="button"]:has-text("Sign In")')).toHaveCount(0);
await page.click('button:has-text("Accept All Cookies")'); // to not waste screen space in --debug
await page.click('#onetrust-accept-btn-handler'); // accept cookies to not waste screen space
await page.click('[data-testid="offer-card-image-landscape"]');
// TODO check if already claimed
await page.click('[data-testid="purchase-cta-button"]');
await page.click('button:has-text("Continue")');
await page.click('div[data-component=makePlatformUnsupportedWarningStep] > button');
// it then creates an iframe for the rest
// await page.frame({ url: /.*store\/purchase.*/ }).click('button:has-text("Place Order")'); // not found because it does not wait for iframe
const iframe = page.frameLocator('.webPurchaseContainer iframe')
await iframe.locator('button:has-text("Place Order")').click();
await iframe.locator('button:has-text("I Agree")').click();
// await page.pause();
await page.solveRecaptchas();
await page.pause();
await context.close();
await browser.close();
})();

0 comments on commit ba97a0e

Please sign in to comment.