{"id":22367383,"url":"https://github.com/prog420/automationpractice","last_synced_at":"2026-04-24T11:33:18.304Z","repository":{"id":208424147,"uuid":"721598588","full_name":"prog420/AutomationPractice","owner":"prog420","description":"A playground project for automated UI testing using Python, Pytest and Selenium.","archived":false,"fork":false,"pushed_at":"2025-04-01T08:32:45.000Z","size":13506,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-29T18:02:14.457Z","etag":null,"topics":["allure","pytest","python","selenium"],"latest_commit_sha":null,"homepage":"https://prog420.github.io/AutomationPractice/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/prog420.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-11-21T11:48:41.000Z","updated_at":"2025-04-01T08:30:33.000Z","dependencies_parsed_at":"2024-07-24T12:14:31.823Z","dependency_job_id":null,"html_url":"https://github.com/prog420/AutomationPractice","commit_stats":null,"previous_names":["prog420/automationpractice"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/prog420/AutomationPractice","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prog420%2FAutomationPractice","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prog420%2FAutomationPractice/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prog420%2FAutomationPractice/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prog420%2FAutomationPractice/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/prog420","download_url":"https://codeload.github.com/prog420/AutomationPractice/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prog420%2FAutomationPractice/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32221448,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-24T10:26:35.452Z","status":"ssl_error","status_checked_at":"2026-04-24T10:25:27.643Z","response_time":64,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["allure","pytest","python","selenium"],"created_at":"2024-12-04T18:17:25.661Z","updated_at":"2026-04-24T11:33:18.288Z","avatar_url":"https://github.com/prog420.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Test Automation Project for [Practice.ExpandTesting.com](https://practice.expandtesting.com/)\n[![Website](https://img.shields.io/website.svg?url=https://prog420.github.io/AutomationPractice)]()\n[![Python](https://img.shields.io/badge/python-3.9%20|%203.10%20|%203.11-blue)]()\n[![CodeStyle](https://img.shields.io/badge/code%20style-black-000000.svg)]()\n\nA playground project for automated UI testing using Python, Pytest and Selenium.\n\n**Test Reports:** [Allure](https://allurereport.org/)\n\n**CI:** [Github Actions](https://github.com/features/actions/)\n\n---\n\n### \u0026nbsp;\u0026nbsp;🛠️ Prerequisites\n[![Pytest](https://img.shields.io/badge/pytest-7.4.0-blue)](https://pypi.python.org/pypi/pytest)\n[![pytest-xdist](https://img.shields.io/badge/pytest--xdist-3.3.1-blue)](https://pypi.org/project/pytest-xdist/)\n[![Selenium](https://img.shields.io/badge/selenium-4.10.0-blue)](https://pypi.org/project/selenium/)\n[![Allure Pytest](https://img.shields.io/badge/allure--pytest-2.13.2-blue)](https://pypi.python.org/pypi/allure-pytest)\n[![webdriver-manager](https://img.shields.io/badge/webdriver--manager-4.0.0-blue)](https://pypi.org/project/webdriver-manager/)\n\n---\n\n### \u0026nbsp;\u0026nbsp;🛠️ Running Tests\n\n#### a) Github Actions CI\n\nCheck Latest Test Run Report: [Allure Report Page](https://prog420.github.io/AutomationPractice)\n\nLaunch New Test Run:\n\n1. Navigate to `Actions` tab.\n2. Select `Allure Report CI`.\n3. Click `Run Workflow`.\n4. Select `Use Workflow From:`: `Branch: main`.\n5. Click `Run Workflow`.\n6. Wait until the job is complete.\n7. Navigate to [Allure Report Page](https://prog420.github.io/AutomationPractice).\n\n#### b) Local Machine:\n\n1. Clone repository, install dependencies:\n```bash\n# Clone repository\ngit clone ...\n\n# Install virtual environment\npython3 -m venv venv\n\n# Activate virtual environment\nsource venv/bin/activate\n\n# Install dependencies\npip install -r requirements.txt\n```\n\n3) Start new test run:\n\n```bash\npytest -vs --alluredir=allure-reports\n```\n\n4) Check allure report:\n\n```bash\nallure serve allure-reports\n```\n---\n\n### \u0026nbsp;\u0026nbsp;🛠️ CLI Arguments:\n\n1. `--headless` - run tests without loading the browser's UI.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprog420%2Fautomationpractice","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprog420%2Fautomationpractice","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprog420%2Fautomationpractice/lists"}