File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -64,11 +64,11 @@ function Start-SeChrome {
64
64
$Chrome_Options = New-Object - TypeName " OpenQA.Selenium.Chrome.ChromeOptions"
65
65
66
66
if ($DefaultDownloadPath ){
67
- Write-Host " Setting Default Download directory: $DefaultDownloadPath "
67
+ Write-Verbose " Setting Default Download directory: $DefaultDownloadPath "
68
68
$Chrome_Options.AddUserProfilePreference (' download' , @ {' default_directory' = $ ($DefaultDownloadPath.FullName ); ' prompt_for_download' = $false ; })
69
69
}
70
70
if ($ProfileDirectoryPath ){
71
- Write-Host " Setting Profile directory: $ProfileDirectoryPath "
71
+ Write-Verbose " Setting Profile directory: $ProfileDirectoryPath "
72
72
$Chrome_Options.AddArgument (" user-data-dir=$ProfileDirectoryPath " )
73
73
}
74
74
@@ -99,7 +99,7 @@ function Start-SeChrome {
99
99
}
100
100
101
101
if (! $HideVersionHint ) {
102
- Write-Host " Download the right chromedriver from 'http://chromedriver.chromium.org/downloads'" - ForegroundColor Yellow
102
+ Write-Verbose " Download the right chromedriver from 'http://chromedriver.chromium.org/downloads'"
103
103
}
104
104
105
105
if ($IsLinux -or $IsMacOS ){
You can’t perform that action at this time.
0 commit comments