We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
RunWaitOne()
1 parent 442014d commit 6f81e28Copy full SHA for 6f81e28
ui-tests/ui-test-library.ahk
@@ -55,11 +55,11 @@ ExitWithError(error) {
55
}
56
57
RunWaitOne(command) {
58
- shell := ComObject("WScript.Shell")
59
- ; Execute a single command via cmd.exe
60
- exec := shell.Exec(A_ComSpec " /C " command)
61
- ; Read and return the command's output
62
- return exec.StdOut.ReadAll()
+ shell := ComObject("WScript.Shell")
+ ; Execute a single command via cmd.exe
+ exec := shell.Exec(A_ComSpec " /C " command)
+ ; Read and return the command's output
+ return exec.StdOut.ReadAll()
63
64
65
; This function is quite the hack. It assumes that the Windows Terminal is the active window,
0 commit comments