Skip to content

Commit 9ffe5c4

Browse files
committed
debugging
1 parent 892630e commit 9ffe5c4

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/ci-tests.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,20 @@ jobs:
5050
with:
5151
python-version: ${{ matrix.python-version }}
5252
- name: Set up Chrome
53+
id: setup-chrome
5354
uses: browser-actions/setup-chrome@v2.1.1
5455
with:
5556
install-chromedriver: true
57+
- name: Print installed Chrome and Chromedriver paths and versions
58+
run: |
59+
echo "Chrome path: ${{ steps.setup-chrome.outputs.chrome-path }}"
60+
echo "Chrome version: ${{ steps.setup-chrome.outputs.chrome-path }} --version"
61+
echo "Chromedriver path: ${{ steps.setup-chrome.outputs.chromedriver-path }}"
62+
echo "Chromedriver version: ${{ steps.setup-chrome.outputs.chromedriver-path }} --version"
63+
echo "chrome --version: $(chrome --version)"
64+
- name: Print Python webbrowser standard browser list
65+
run: |
66+
python -c "import webbrowser; webbrowser.register_standard_browsers(); print(webbrowser._tryorder)"
5667
- name: Check whether we can access Chrome from Python
5768
run: |
5869
python -c "import webbrowser; webbrowser.get()"

0 commit comments

Comments
 (0)