issues
search
thebrowsercompany
/
swift-webdriver
A Swift library for communicating with WebDriver (Appium/WinAppDriver) endpoints
BSD 3-Clause "New" or "Revised" License
105
stars
3
forks
source link
Use CreateProcessW directly and other cleanup.
#51
Closed
jeffdav
closed
1 year ago
jeffdav
commented
1 year ago
Switch from
Foundation.Process
to calling
CreateProcessW
directly, with
bInheritHandles = false
.
Remove obvious comments.
Fix Status test to teardown the WAD wrapper class thus terminating the process.
As a sideeffect, WAD stdout is now written to the console. We can revisit if it gets annoying.
Foundation.Process
to callingCreateProcessW
directly, withbInheritHandles = false
.