diff --git a/src/Interactive/AutomationExtension.cs b/src/Interactive/AutomationExtension.cs index 4e4c0c6..e81c1db 100644 --- a/src/Interactive/AutomationExtension.cs +++ b/src/Interactive/AutomationExtension.cs @@ -86,7 +86,7 @@ async Task ConfigureKernelDirective(CSharpKernel csharpKernel) Arity = ArgumentArity.ZeroOrOne }; - var appOption = new Option( + var appOption = new Option( new[] { "--app" }, "The application file (.app, .apk, etc.) to test.") { @@ -144,8 +144,8 @@ async Task ConfigureKernelDirective(CSharpKernel csharpKernel) nameOption }; - testCommand.SetHandler( - async (Platform platform, Platform automationPlatform, string appId, FileInfo? app, string device, string name) => + testCommand.SetHandler( + async (Platform platform, Platform automationPlatform, string appId, FileSystemInfo? app, string device, string name) => { // if there is an already used dirver with such name dispose if (csharpKernel.TryGetValue(name, out IDriver oldDriver) && oldDriver is { })