Skip to content

Commit

Permalink
Update actions to start WinAppDriver, add second app id to find app
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelwgn committed Nov 2, 2023
1 parent 7888074 commit 0599c20
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/build-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
3 changes: 2 additions & 1 deletion tests/Files.InteractionTests/SessionManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 0599c20

Please sign in to comment.