From 24629adcd515e8d0ea11ca9522995cb8ee0afb97 Mon Sep 17 00:00:00 2001 From: Matthias Guillitte Date: Thu, 26 Jun 2025 17:01:30 +0200 Subject: [PATCH] Change job Selenium timeout --- app/Browser/BrowserJob.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/Browser/BrowserJob.php b/app/Browser/BrowserJob.php index 2e0bb2f..e30dc41 100644 --- a/app/Browser/BrowserJob.php +++ b/app/Browser/BrowserJob.php @@ -168,7 +168,9 @@ abstract class BrowserJob implements ShouldQueue DesiredCapabilities::chrome()->setCapability( ChromeOptions::CAPABILITY, $options - ) + ), + 4000, + $this->timeout * 1000 ); }