{"id":49425809,"url":"https://github.com/ghaziengineer/learnaqa_cypress","last_synced_at":"2026-04-29T09:13:30.402Z","repository":{"id":323077638,"uuid":"1091977998","full_name":"ghaziengineer/learnaqa_cypress","owner":"ghaziengineer","description":"https://www.learnaqa.info/","archived":false,"fork":false,"pushed_at":"2025-11-30T20:51:49.000Z","size":133,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-03T06:20:42.793Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/ghaziengineer.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-11-07T20:00:35.000Z","updated_at":"2025-11-30T20:51:52.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/ghaziengineer/learnaqa_cypress","commit_stats":null,"previous_names":["ghaziengineer/learnqa_cypress","ghaziengineer/learnaqa_cypress"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ghaziengineer/learnaqa_cypress","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ghaziengineer%2Flearnaqa_cypress","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ghaziengineer%2Flearnaqa_cypress/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ghaziengineer%2Flearnaqa_cypress/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ghaziengineer%2Flearnaqa_cypress/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ghaziengineer","download_url":"https://codeload.github.com/ghaziengineer/learnaqa_cypress/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ghaziengineer%2Flearnaqa_cypress/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32418498,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T06:29:02.080Z","status":"ssl_error","status_checked_at":"2026-04-29T06:29:00.631Z","response_time":110,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":[],"created_at":"2026-04-29T09:13:29.758Z","updated_at":"2026-04-29T09:13:30.388Z","avatar_url":"https://github.com/ghaziengineer.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🎯LearnaQa Platform – UI \u0026 E2E Tests with Cypress, JavaScript \u0026 Cucumber\r\n\r\n## Overview 📝\r\nThis project contains **end-to-end (E2E)** 🚀 and **UI 🎨 automation tests** for the **Learna QA Automation Platform** 🌐https://www.learnaqa.info/  \r\nIt is designed to help practice **real-world automation scenarios** 🧪  \r\n**The tests are built with:**\r\n- ⚡ **Cypress** – Fast and reliable end-to-end testing framework\r\n\r\n- 🧩 **Cucumber (Gherkin)** – Behavior-driven testing for readable scenarios\r\n\r\n- 💻 **JavaScript** – Programming language for automation logic\r\n\r\n## Project Structure 📂\r\n```\r\n.\r\n├───.github\r\n│   └───workflows\r\n├───cypress\r\n│   ├───e2e\r\n│   │   └───features\r\n│   │       ├───homepage.feautre\r\n│   │       ├───logout.feautre\r\n│   │       ├───dragAndDrop.feautre\r\n│   │       ├───fileOperations.feautre\r\n│   │       ├───footerLinks.feautre\r\n│   │       ├───dynamicElements.feautre\r\n│   │       └───signin.feautre\r\n│   ├───fixtures\r\n│   │   ├───template_data.xlsx\r\n│   │   └───testData.json\r\n│   ├───screenshots\r\n│   └───support\r\n│   │   ├───e2e.js\r\n│   │   └───pages\r\n│   │       ├───HomePage.js\r\n│   │       ├───FooterPage.js\r\n│   │       ├───FileOperationsPage.js\r\n│   │       ├───DynamicElements.js\r\n│   │       ├───DragAndDropPage.js\r\n│   │       └───SignInPage.js\r\n│   │   └───step_definitions\r\n│   │       ├───commonSteps.js\r\n│   │       ├───dragAndDropSteps.js\r\n│   │       ├───dynamicElementsSteps.js\r\n│   │       ├───footerLinksSteps.js\r\n│   │       ├───fileOperationsSteps.js\r\n│   │       ├───homepageSteps.js\r\n│   │       └───signinSteps.js\r\n├───cypress.config.js\r\n├───package.json\r\n├───.gitignore\r\n└── README.md\r\n```\r\n## Getting Started 🚀\r\n**1.** Clone the repository:\r\n```bash\r\ngit clone https://github.com/ghaziengineer/learnqa_cypress.git\r\n```\r\n**2.** Install dependencies:\r\n```bash\r\nnpm install\r\n```\r\n**3.** Run tests:\r\n```bash\r\nnpx cypress open\r\n```\r\n## ⚠️ Important Notes\r\n- ⚙️ **Environment Setup** – Ensure Node.js and Cypress are properly installed before running any test.  \r\n- 🗂️ **Test Data Setup** – Before running tests, copy the file cypress/fixtures/testData.template.json 👉 rename it to testData.json, and fill it with your actual credentials.\r\n- 🏷️ **Tag Management** – Use tags (like @ui, @e2e, @valid etc...) 👉 to easily filter and run specific scenarios with commands such as:  \r\n```bash\r\nnpx cypress run --env tags='@ui'\r\n```\r\n\r\n![Profile view counter on GitHub](https://komarev.com/ghpvc/?username=ghaziengineer)\r\n\r\n\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fghaziengineer%2Flearnaqa_cypress","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fghaziengineer%2Flearnaqa_cypress","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fghaziengineer%2Flearnaqa_cypress/lists"}