{"id":29961419,"url":"https://github.com/beemi/playwright-automation-test-framework","last_synced_at":"2026-04-13T21:31:10.414Z","repository":{"id":215843703,"uuid":"345193889","full_name":"beemi/playwright-automation-test-framework","owner":"beemi","description":"UI Automation framework with Playwright \u0026 Allure reporting","archived":false,"fork":false,"pushed_at":"2026-04-08T18:02:06.000Z","size":1394,"stargazers_count":4,"open_issues_count":14,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-08T19:27:27.505Z","etag":null,"topics":["allure-report","allure2","automation-test","github-actions","playwright","playwright-typescript"],"latest_commit_sha":null,"homepage":"https://beemi.github.io/playwright-automation-test-example/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/beemi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-03-06T20:59:09.000Z","updated_at":"2026-04-08T09:34:33.000Z","dependencies_parsed_at":"2024-02-17T01:24:42.200Z","dependency_job_id":"5f8271a6-d93e-46c0-9742-df3291f11799","html_url":"https://github.com/beemi/playwright-automation-test-framework","commit_stats":null,"previous_names":["beemi/playwright-automation-test-example","beemi/playwright-automation-test-framework"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/beemi/playwright-automation-test-framework","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beemi%2Fplaywright-automation-test-framework","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beemi%2Fplaywright-automation-test-framework/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beemi%2Fplaywright-automation-test-framework/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beemi%2Fplaywright-automation-test-framework/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/beemi","download_url":"https://codeload.github.com/beemi/playwright-automation-test-framework/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beemi%2Fplaywright-automation-test-framework/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31771787,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T20:17:16.280Z","status":"ssl_error","status_checked_at":"2026-04-13T20:17:08.216Z","response_time":93,"last_error":"SSL_read: 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-report","allure2","automation-test","github-actions","playwright","playwright-typescript"],"created_at":"2025-08-03T23:10:44.312Z","updated_at":"2026-04-13T21:31:10.394Z","avatar_url":"https://github.com/beemi.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🎭 Playwright UI Automation Framework 🎭\n\n[![Playwright](https://img.shields.io/badge/Playwright-1.44.0-blue)](https://playwright.dev/)\n[![Typescript](https://img.shields.io/badge/Typescript-4.9.5-blue)](https://www.typescriptlang.org/)\n[![Allure](https://img.shields.io/badge/Allure-2.13.8-blue)](https://docs.qameta.io/allure/)\n[![Node](https://img.shields.io/badge/Node-14.17.6-green)](https://nodejs.org/en/)\n[![Npm](https://img.shields.io/badge/Npm-6.14.15-green)](https://www.npmjs.com/)\n\n## Introduction 📝\n\nThis repository contains the UI automation framework for the 🌐 simple web application.\nThe framework is built using 🎭 Playwright,\ntests are written in 🔠 Typescript,\nwith 🏃 Jest as the test runner,\n📈 Allure for test reporting,\nand 🎲 Faker for test data generation.\n\n## Table of Contents 📚\n\n-   [Project Structure](#project-structure)\n-   [Installation](#installation)\n-   [Lint and Format](#lint-and-format)\n-   [Reporting](#reporting)\n-   [CI/CD](#cicd)\n-   [Contact](#contact)\n\n## Project Structure 📁\n\n```angular2html\n├───.github\n│   └───workflows\n├───docs # contains the documentation\n├───config # contains the configuration files for each environment\n│   ├───dev.env\n│   ├───prod.env\n│   └───qa.env\n├───pages # contains the page objects for each page\n|   ├───home-page.ts\n|   ├───login-page.ts\n|   ├───product-page.ts\n|   ├───shopping-cart-page.ts\n|   └───checkout-page.ts\n├───tests # contains the test files\n|   ├───checkout.test.ts\n|   ├───login.test.ts\n|   ├───product.test.ts\n|   ├───shopping-cart.test.ts\n|   └───test-data.ts\n├───global-setup.ts # contains the global setup\n├───playwright.config.ts # contains the playwright configuration\n├───allure-results # contains the allure results\n```\n\n## Installation 🛠\n\n```bash\nnpm init playwright@latest\n```\n\nCheck the installation by running the following command:\n\n```bash\nnpx playwright --version\n```\n\nRun all tests in headless mode:\n\n```bash\nnpm test\n```\n\nRun all tests in headed mode:\n\n```bash\nnpm run test:headed\n```\n\n### Lint 🧹 and Format 🎨\n\nTo lint the code, run the following command:\n\n```bash\nnpm run lint\n```\n\nAlso `husky` is configured in the project to run the linting and formatting on every commit.\n\n:warning: _**Note:**_ Git commit message should follow the [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) format.\n\n### Reporting 📊\n\n[Allure GitHub](https://allurereport.org/docs/integrations-github/)\n\nTo generate the allure report, run the following command:\n\n```bash\nnpm run generate:allure:report\n```\n\nTo open the allure report, run the following command:\n\n```bash\n\nnpm run open:allure:report\n```\n\n### CI/CD 🚀\n\nThe CI/CD pipeline, configured with GitHub Actions, triggers on every push to the main branch. It runs tests in:\n\n-   🌐 Development\n-   🌐 QA\n-   🌐 Production\n    ...and across browsers:\n\n-   🌐 Chrome\n-   🌐 Firefox\n-   🌐 Webkit\n\nGitHub workflow file: `.github/workflows/playwright.yml`\n\nAllure reports are generated and published via GitHub Pages.\n\n### Contact 📧\n\nQuestions? Reach out to us at 📧 [beemi.raja@gmail.com](mailto:beemi.raja@gmail.com)\n\n```\n\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbeemi%2Fplaywright-automation-test-framework","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbeemi%2Fplaywright-automation-test-framework","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbeemi%2Fplaywright-automation-test-framework/lists"}