Files
runner-images-sangeeth/images/win/scripts/Installers/Install-WinAppDriver.ps1
T

13 lines
597 B
PowerShell
Raw Normal View History

####################################################################################
## File: Install-WinAppDriver.ps1
## Desc: Install Windows Application Driver (WinAppDriver)
####################################################################################
$InstallerName = "WindowsApplicationDriver.msi"
$InstallerUrl = "https://github.com/Microsoft/WinAppDriver/releases/download/v1.1/${InstallerName}"
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
Install-Binary -Url $InstallerUrl -Name $InstallerName
2020-07-30 12:12:49 +05:00
Invoke-PesterTests -TestFile "WinAppDriver"