PuPHPeteer Timeout on launch

Viewed 13

PuPHPeteer is returnig timeout error on $puppeteer->launch.

    $puppeteer = new Puppeteer();
    // die; //<-- script dies fast. It's problem below
    $browser = $puppeteer->launch([
        'args' => [
            '--no-sandbox',
            '--disable-setuid-sandbox',
            '--disable-dev-shm-usage',
        ]
    ]);
    //die; //<-- it goes to TimeOut Error before this place, so it's launch problem
    $page = $browser->newPage();
    $page->goto('https://example.com');

What could be problem for this problem with PuPHPeteer?

0 Answers
Related