-
Notifications
You must be signed in to change notification settings - Fork 154
Have trouble starting metamask #311
Comments
Same issue for 100% of attempts. This error is logged in Chrome DevTools; not sure if related:
|
Hey @HelloWeb3World and @stefan-girlich Currently, there is resealing a new version |
Thanks for the prompt reponse, @BeroBurny . |
fyi: I was able to reproduce the same error with playwright. |
Hey, sorry for the delay (weekend, and stuff). |
@BeroBurny
But this problem still occurs. When fix, sir? |
same issue here with 5.1.1 any work around? |
Any solution? |
I tried to reload the metamask page and here is my workaround code: const browser = await dappeteer.launch({ headless: false })
await sleep(2000)
const pages = await browser.pages()
for (const page of pages) {
if (page.url().startsWith('chrome-extension')) {
await page.reload()
}
}
await sleep(2000)
const metaMask = await dappeteer.setupMetaMask(browser, {
seed: "test test test test test test test test test test test junk",
password: "xxx",
}); System:
|
Describe the bug
I get a lot of error when setup matamask (like 8/10)
To Reproduce
const browser = await dappeteer.launch({
headless: false,
})
const metaMask = await dappeteer.setupMetaMask(browser, {
seed: "test test test test test test test test test test test junk",
password: "xxx",
});
Logs
Expected behavior
can setup metamask successfully
Screenshots
If applicable, add screenshots to help explain your problem.
System:
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: