From f07a74c6941110a022a2a4e5621fa2c1f60a70bc Mon Sep 17 00:00:00 2001 From: Mikhail Timofeev Date: Fri, 6 Nov 2020 02:34:47 +0300 Subject: [PATCH] update driver --- images/win/scripts/Installers/Install-WinAppDriver.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/images/win/scripts/Installers/Install-WinAppDriver.ps1 b/images/win/scripts/Installers/Install-WinAppDriver.ps1 index 38745dd9..b33ff907 100644 --- a/images/win/scripts/Installers/Install-WinAppDriver.ps1 +++ b/images/win/scripts/Installers/Install-WinAppDriver.ps1 @@ -3,8 +3,8 @@ ## Desc: Install Windows Application Driver (WinAppDriver) #################################################################################### -$InstallerName = "WindowsApplicationDriver.msi" -$InstallerUrl = "https://github.com/Microsoft/WinAppDriver/releases/download/v1.1/${InstallerName}" +$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