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

10 lines
276 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
public float DefaultTimeOut { get; set; } = 30000;
2024-04-29 14:13:17 +00:00
}