Document environment variables of MacOS images (#2493)

* Document environment variables of MacOS images

* Change adnroid variables

* Apply reviews

* Remove some variables, fix headers

* Show link targets

* rename helper

* remove symlinks

* More links
This commit is contained in:
Sergey Dolin
2021-02-08 11:45:16 +05:00
committed by GitHub
parent dad0901d33
commit 6beed71b4f
5 changed files with 84 additions and 4 deletions

View File

@@ -49,4 +49,26 @@ function Get-FirefoxVersion {
function Get-GeckodriverVersion {
return Run-Command "geckodriver --version" | Select-Object -First 1
}
}
function Build-BrowserWebdriversEnvironmentTable {
return @(
@{
"Name" = "CHROMEWEBDRIVER"
"Value" = $env:CHROMEWEBDRIVER
},
@{
"Name" = "EDGEWEBDRIVER"
"Value" = $env:EDGEWEBDRIVER
},
@{
"Name" = "GECKOWEBDRIVER"
"Value" = $env:GECKOWEBDRIVER
}
) | ForEach-Object {
[PSCustomObject] @{
"Name" = $_.Name
"Value" = $_.Value
}
}
}