Hello,
Thank you for this really nice package, however we have a really annoying problem.
Our screenshots are always with this weird repeat bug :

Any idea on how to solve this ? Please note that we run tests on WSL2/Ubuntu and Laravel 11 with Sail 8.3. Gotenberg is in the docker-compose.yml on the same network.
We use this code :
$streamHtml = \Gotenberg\Stream::string('index.html', $html);
$chromium = \Gotenberg\Gotenberg::chromium(config('app.gotenberg.url'));
$screenshot = $chromium
->screenshot()
->html($streamHtml);
$response = \Gotenberg\Gotenberg::send($screenshot);
$screenshot = $response->getBody()->getContents();