Try fix sandboxing and shm usage issues (whatever that means)

This commit is contained in:
2025-11-09 23:55:34 +01:00
parent 3b4939ca36
commit 0550261d5a

View File

@@ -50,6 +50,8 @@ public static class AppHelper
{
var options = new ChromeOptions();
options.AddArgument("--headless");
options.AddArgument("--no-sandbox");
options.AddArgument("--disable-dev-shm-usage");
return new ChromeDriver(options);
}