We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81670f1 commit 25e762eCopy full SHA for 25e762e
1 file changed
.github/workflows/test.yml
@@ -99,7 +99,17 @@ jobs:
99
if: ${{ contains(matrix.BROWSER, 'chrome') }}
100
run: |
101
sudo rm -f /usr/bin/google-chrome
102
+ sudo rm -f /usr/bin/${{ matrix.BROWSER }}
103
sudo ln -s ${{ steps.setup-chrome.outputs.chrome-path }} /usr/bin/google-chrome
104
+ sudo ln -s ${{ steps.setup-chrome.outputs.chrome-path }} /usr/bin/${{ matrix.BROWSER }}
105
+
106
+ - name: Check Chrome Installation after overwriting system Chrome
107
+ if: ${{ contains(matrix.BROWSER, 'chrome') }}
108
+ run: |
109
+ ${{ steps.setup-chrome.outputs.chrome-path }} --version
110
+ ${{ matrix.BROWSER }} --version
111
+ chrome --version
112
+ google-chrome --version
113
114
# - name: Install Chrome Driver
115
# if: ${{ contains(matrix.BROWSER, 'chrome') }}
0 commit comments