Skip to content

Fix SessionnotcreatedException with CI-safe chrome options #4

Fix SessionnotcreatedException with CI-safe chrome options

Fix SessionnotcreatedException with CI-safe chrome options #4

Workflow file for this run

name: UI Tests (Selenium)
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
env:
HEADLESS: "true"
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Set up Chrome
uses: browser-actions/setup-chrome@v1
- name: Show Chrome version
run: |
google-chrome --version
which google-chrome
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run Selenium tests
run: pytest -q