diff --git a/images/linux/scripts/SoftwareReport/SoftwareReport.Browsers.psm1 b/images/linux/scripts/SoftwareReport/SoftwareReport.Browsers.psm1 index e4e44d6fd..8ba6cb767 100644 --- a/images/linux/scripts/SoftwareReport/SoftwareReport.Browsers.psm1 +++ b/images/linux/scripts/SoftwareReport/SoftwareReport.Browsers.psm1 @@ -19,7 +19,7 @@ function Get-GeckodriverVersion { } function Get-ChromiumVersion { - $chromiumVersion = chromium --version | Take-OutputPart -Part 0,1 + $chromiumVersion = chromium-browser --version | Take-OutputPart -Part 0,1 return $chromiumVersion } diff --git a/images/linux/scripts/installers/google-chrome.sh b/images/linux/scripts/installers/google-chrome.sh index 569f490c1..eeefa46a3 100644 --- a/images/linux/scripts/installers/google-chrome.sh +++ b/images/linux/scripts/installers/google-chrome.sh @@ -79,6 +79,7 @@ mkdir $CHROMIUM_DIR unzip -qq /tmp/${ZIP_FILE} -d $CHROMIUM_DIR ln -s $CHROMIUM_BIN /usr/bin/chromium +ln -s $CHROMIUM_BIN /usr/bin/chromium-browser invoke_tests "Browsers" "Chrome" invoke_tests "Browsers" "Chromium" \ No newline at end of file diff --git a/images/linux/scripts/tests/Browsers.Tests.ps1 b/images/linux/scripts/tests/Browsers.Tests.ps1 index 40296ec86..11b523d94 100644 --- a/images/linux/scripts/tests/Browsers.Tests.ps1 +++ b/images/linux/scripts/tests/Browsers.Tests.ps1 @@ -20,6 +20,6 @@ Describe "Chrome" { Describe "Chromium" { It "Chromium" { - "chromium --version" | Should -ReturnZeroExitCode + "chromium-browser --version" | Should -ReturnZeroExitCode } }