From 7b67b1576c3ec4fb5b5772da123bfd397459a8aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20D=C3=A9moulins?= Date: Mon, 3 Feb 2020 14:04:44 +0100 Subject: [PATCH] Fixes #351 --- images/win/scripts/Installers/Install-SeleniumWebDrivers.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/images/win/scripts/Installers/Install-SeleniumWebDrivers.ps1 b/images/win/scripts/Installers/Install-SeleniumWebDrivers.ps1 index 426c20b5..c6e1b3c2 100644 --- a/images/win/scripts/Installers/Install-SeleniumWebDrivers.ps1 +++ b/images/win/scripts/Installers/Install-SeleniumWebDrivers.ps1 @@ -17,7 +17,7 @@ catch { Expand-Archive -Path $DriversZipFile -DestinationPath $DestinationPath -Force; Remove-Item $DriversZipFile; -$ChromeDriverPath = "$DestinationPath\SeleniumWebDrivers\ChromeDriver"; +$ChromeDriverPath = "${DestinationPath}SeleniumWebDrivers\ChromeDriver"; Write-Host "Chrome driver path: [$ChromeDriverPath]"; Remove-Item -Path "$ChromeDriverPath\*" -Force; @@ -48,7 +48,7 @@ Remove-Item -Path "$ChromeDriverPath\chromedriver_win32.zip" -Force; # Install Microsoft Edge Web Driver Write-Host "Microsoft Edge driver download...." -$EdgeDriverPath = "$DestinationPath\SeleniumWebDrivers\EdgeDriver" +$EdgeDriverPath = "${DestinationPath}SeleniumWebDrivers\EdgeDriver" if (-not (Test-Path -Path $EdgeDriverPath)) { New-Item -Path $EdgeDriverPath -ItemType "directory" }