BotSharp/src/Infrastructure/BotSharp.Abstraction/Browsing/Settings/WebBrowsingSettings.cs

11 lines
325 B
C#
Raw Normal View History

2024-04-29 14:13:17 +00:00
namespace BotSharp.Abstraction.Browsing.Settings;
public class WebBrowsingSettings
{
public string Driver { get; set; } = "Playwright";
public bool Headless { get; set; }
2025-03-12 13:49:31 +00:00
// Default timeout in milliseconds
2025-03-12 13:53:38 +00:00
public float DefaultTimeout { get; set; } = 30000;
public bool IsEnableScreenshot { get; set; }
2024-04-29 14:13:17 +00:00
}