Skip to content

Instantly share code, notes, and snippets.

@jsakamoto
jsakamoto / Test-MixedContent.ps1
Created June 13, 2018 23:01 — forked from stknohg/Test-MixedContent.ps1
Selenium WebDriver(Chrome)を使った簡単なMixed Contentのチェック例
# パスチェック
# カレントディレクトリに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
}