From dddccbd541389445a4d2fb3862d4bf4c63565682 Mon Sep 17 00:00:00 2001 From: Dor-bl Date: Tue, 14 Feb 2023 23:32:07 +0200 Subject: [PATCH] fix: Add missing AutomationName option for ClickElementTest --- test/integration/Windows/ClickElementTest.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/test/integration/Windows/ClickElementTest.cs b/test/integration/Windows/ClickElementTest.cs index a87675f5d..11aea9e7f 100644 --- a/test/integration/Windows/ClickElementTest.cs +++ b/test/integration/Windows/ClickElementTest.cs @@ -29,6 +29,7 @@ public class ClickElementTest public void BeforeAll() { var appCapabilities = new AppiumOptions(); + appCapabilities.AutomationName = "Windows"; appCapabilities.App = "Microsoft.WindowsCalculator_8wekyb3d8bbwe!App"; appCapabilities.DeviceName = "WindowsPC"; appCapabilities.PlatformName = "Windows";