This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# パスチェック | |
# カレントディレクトリにWebDriver.dllとchromedriver.exeがある前提 | |
if ( -not (Test-Path -LiteralPath '.\WebDriver.dll')) { | |
Write-Error 'WebDriver.dllがありません。' | |
return | |
} | |
if ( -not (Test-Path -LiteralPath '.\chromedriver.exe')) { | |
Write-Error 'chromedriver.exeがありません。' | |
return | |
} |