diff --git a/.github/workflows/build-app.yml b/.github/workflows/build-app.yml index 515e026532a3..320b83d033e7 100644 --- a/.github/workflows/build-app.yml +++ b/.github/workflows/build-app.yml @@ -150,6 +150,9 @@ jobs: - name: Set full HD resolution run: Set-DisplayResolution -Width 1920 -Height 1080 -Force + - name: Start WinAppDriver + run: Start-Process -FilePath "C:\Program Files (x86)\Windows Application Driver\WinAppDriver.exe" + - name: Restore NuGet shell: pwsh run: 'nuget restore $env:SOLUTION_PATH' diff --git a/tests/Files.InteractionTests/SessionManager.cs b/tests/Files.InteractionTests/SessionManager.cs index e0690bcbd445..947e946cbbde 100644 --- a/tests/Files.InteractionTests/SessionManager.cs +++ b/tests/Files.InteractionTests/SessionManager.cs @@ -16,7 +16,8 @@ public class SessionManager private const string WindowsApplicationDriverUrl = "http://127.0.0.1:4723"; private static string[] FilesAppIDs = new string[]{ "49306atecsolution.FilesUWP_dwm5abbcs5pn0!App", - "FilesDev_ykqwq8d6ps0ag!App" + "FilesDev_ykqwq8d6ps0ag!App", + "FilesDev_dwm5abbcs5pn0!App" }; private static uint appIdIndex = 0;