Skip to content

Instantly share code, notes, and snippets.

@dino-su
Last active February 19, 2019 05:57
Show Gist options
  • Save dino-su/260ce4157030fa4873ced75ed84b3000 to your computer and use it in GitHub Desktop.
Save dino-su/260ce4157030fa4873ced75ed84b3000 to your computer and use it in GitHub Desktop.
Jenkins pipeline example of WinAppDriver.
// Credit: https://github.com/Microsoft/WinAppDriver/issues/588
node {
powershell '''
# Start WinAppDrive
Start-Process -FilePath cmd -ArgumentList '/c WinAppDriver.exe 1>WinAppDriver.log 2>WinAppDriver_ERR.log' -WindowStyle Hidden
# Run UI Test
vstest.console.exe 'bin\\Debug\\CalculatorTest.dll'
'''
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment