2019-12-13 09:48:00 -05:00
|
|
|
####################################################################################
|
|
|
|
|
## File: Install-WinAppDriver.ps1
|
|
|
|
|
## Desc: Install Windows Application Driver (WinAppDriver)
|
|
|
|
|
####################################################################################
|
|
|
|
|
|
|
|
|
|
Import-Module -Name ImageHelpers -Force
|
2020-04-21 11:58:27 +03:00
|
|
|
|
|
|
|
|
$InstallerName = "WindowsApplicationDriver.msi"
|
|
|
|
|
$InstallerUrl = "https://github.com/Microsoft/WinAppDriver/releases/download/v1.1/${InstallerName}"
|
|
|
|
|
|
2019-12-13 09:48:00 -05:00
|
|
|
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
|
2020-04-21 11:58:27 +03:00
|
|
|
Install-Binary -Url $InstallerUrl -Name $InstallerName
|