We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d4d233 commit e570672Copy full SHA for e570672
src/Infrastructure/BotSharp.Abstraction/Browsing/Settings/WebBrowsingSettings.cs
@@ -4,5 +4,6 @@ public class WebBrowsingSettings
4
{
5
public string Driver { get; set; } = "Playwright";
6
public bool Headless { get; set; }
7
- public float? DefaultTimeOut { get; set; }
+ // Default timeout in milliseconds
8
+ public float DefaultTimeOut { get; set; } = 30000;
9
}
0 commit comments