Files
runner-images-sangeeth/images/win/scripts/Installers/Install-WinAppDriver.ps1
Mikhail Timofeev f07a74c694 update driver
2020-11-06 02:34:47 +03:00

13 lines
605 B
PowerShell

####################################################################################
## File: Install-WinAppDriver.ps1
## Desc: Install Windows Application Driver (WinAppDriver)
####################################################################################
$InstallerName = "WindowsApplicationDriver_1.2.1.msi"
$InstallerUrl = "https://github.com/Microsoft/WinAppDriver/releases/download/v1.2.1/${InstallerName}"
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
Install-Binary -Url $InstallerUrl -Name $InstallerName
Invoke-PesterTests -TestFile "WinAppDriver"