Skip to content

Commit

Permalink
Cleanup (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffdav authored Jul 19, 2023
1 parent b76decf commit 3ea28b0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ xcuserdata/
DerivedData/
.swiftpm/
.netrc
.vscode/
4 changes: 2 additions & 2 deletions Sources/WinAppDriver+Requests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ extension WinAppDriver {
let args = appArguments?.joined(separator: " ")

print("Starting: \(app)")
print("Arguments: \(args)")
printAndFlush("Working Dir: \(appWorkingDir)")
print("Arguments: \(args as String? ?? "(None)")")
printAndFlush("Working Dir: \(appWorkingDir as String? ?? "(None)")")

let newSessionRequest = NewSessionRequest(app: app, appArguments: args, appWorkingDir: appWorkingDir, waitForAppLaunch: waitForAppLaunch)
return Session(in: self, id: try! send(newSessionRequest).sessionId!)
Expand Down

0 comments on commit 3ea28b0

Please sign in to comment.