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.
2 parents 8e1ecc2 + 5737028 commit ea54988Copy full SHA for ea54988
src/Infrastructure/BotSharp.Abstraction/Browsing/IWebDriverHook.cs
@@ -4,6 +4,6 @@ namespace BotSharp.Abstraction.Browsing;
4
5
public interface IWebDriverHook
6
{
7
- Task<List<string>> GetUploadFiles(MessageInfo message);
8
- Task OnLocateElement(MessageInfo message, string content);
+ Task<List<string>> GetUploadFiles(MessageInfo message) => Task.FromResult(new List<string>());
+ Task OnLocateElement(MessageInfo message, string content) => Task.CompletedTask;
9
}
0 commit comments