Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
debugging
  • Loading branch information
emilykl committed Apr 3, 2026
commit 4d1e4a4937df463b5e289443b93e6b2ddfae35b7
11 changes: 11 additions & 0 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,20 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Set up Chrome
id: setup-chrome
uses: browser-actions/setup-chrome@v2.1.1
with:
install-chromedriver: true
- name: Print installed Chrome and Chromedriver paths and versions
run: |
echo "Chrome path: ${{ steps.setup-chrome.outputs.chrome-path }}"
echo "Chrome version: ${{ steps.setup-chrome.outputs.chrome-path }} --version"
echo "Chromedriver path: ${{ steps.setup-chrome.outputs.chromedriver-path }}"
echo "Chromedriver version: ${{ steps.setup-chrome.outputs.chromedriver-path }} --version"
echo "chrome --version: $(chrome --version)"
- name: Print Python webbrowser standard browser list
run: |
python -c "import webbrowser; webbrowser.register_standard_browsers(); print(webbrowser._tryorder)"
- name: Check whether we can access Chrome from Python
run: |
python -c "import webbrowser; webbrowser.get()"
Expand Down