Skip to content

[Bug] initial tab behaives different than new Tabs #922

Open
@ThirtySix361

Description

@ThirtySix361

if i use

[page] = await browser.pages();
await page.goto("https://antcpt.com/score_detector/");

i get a good score of about 0.9.

but if i use

page = await browser.newPage();
await page.goto("https://antcpt.com/score_detector/");

i get a only a score of about 0.3.


the initial tab behaives different, than a new created tab.

even with

const StealthPlugin = require('puppeteer-extra-plugin-stealth');
page = await browser.newPage();
await StealthPlugin().onPageCreated(page);
await page.goto("https://antcpt.com/score_detector/");

i always get a bad score on other tabs.

please tell me how can i fix this?
how can i create a new tab that is exactly like a initial tab?

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions