2024-04-29 14:13:17 +00:00
|
|
|
namespace BotSharp.Abstraction.Browsing.Settings;
|
|
|
|
|
|
|
|
|
|
public class WebBrowsingSettings
|
|
|
|
|
{
|
|
|
|
|
public string Driver { get; set; } = "Playwright";
|
2025-03-10 21:54:51 +00:00
|
|
|
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;
|
2025-03-12 15:51:24 +00:00
|
|
|
public bool IsEnableScreenshot { get; set; }
|
2024-04-29 14:13:17 +00:00
|
|
|
}
|