Selenium Python - CI/CD Integration
You wrote this GitHub Actions workflow to run Selenium tests but it fails with "command not found: python":
name: Selenium Tests
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run tests
run: python test_suite.py
What is the likely fix?