Open xingyu-he opened 6 years ago
I want to load a extension, but it always tips Navigation Timeout Exceeded: 30000ms exceeded.
async ({ option }) => {
const pathToExtension = '../mydir'; const browser = puppeteer.launch({ headless: false, args: [ `--disable-dev-shm-usage`, `--disable-extensions-except=${pathToExtension}`, '--no-sandbox', '--disable-setuid-sandbox', `--load-extension=${pathToExtension}` ] });
});
How did you solve the problem?
@xingyu-he Did you ever get this fixed?
I want to load a extension, but it always tips Navigation Timeout Exceeded: 30000ms exceeded.
async ({ option }) => {
});