ChainSafe / dappeteer

[DEPRECATED]🏌🏼‍E2E testing for dApps using Puppeteer + MetaMask
Other
491 stars 152 forks source link

Using on m1 macOS and keeps crashing when runned. #254

Closed mbuxmann closed 1 year ago

mbuxmann commented 1 year ago

Hey just wanted to find out if anyone else is experiencing this. As soon as I run this below, my m1 crashes. However, when using just a normal puppeteer, it runs perfectly without any issues. I can see the browser opening and instantly crashing. No error message either for why chromium is crashing either.

const browser = await launch({ browser: "chrome", headless: false });

const dappPage = await browser.newPage();
await dappPage.goto("http://my-dapp.com");