From c4838da1fbd95c4d51c781dc1cfe767ac3343233 Mon Sep 17 00:00:00 2001 From: vguruparan Date: Thu, 13 Mar 2025 11:39:37 -0500 Subject: [PATCH] Update no sandbox argument for playwright instance --- .../Drivers/PlaywrightDriver/PlaywrightInstance.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Plugins/BotSharp.Plugin.WebDriver/Drivers/PlaywrightDriver/PlaywrightInstance.cs b/src/Plugins/BotSharp.Plugin.WebDriver/Drivers/PlaywrightDriver/PlaywrightInstance.cs index 755d4faf..283ad314 100644 --- a/src/Plugins/BotSharp.Plugin.WebDriver/Drivers/PlaywrightDriver/PlaywrightInstance.cs +++ b/src/Plugins/BotSharp.Plugin.WebDriver/Drivers/PlaywrightDriver/PlaywrightInstance.cs @@ -77,7 +77,8 @@ public class PlaywrightInstance : IDisposable Args = [ "--disable-infobars", - "--test-type" + "--test-type", + "--no-sandbox" // "--start-maximized" ] });