{"id":23879520,"url":"https://github.com/vinodliyanage/itqa-group-assignment","last_synced_at":"2026-02-28T05:19:45.697Z","repository":{"id":269753873,"uuid":"904036886","full_name":"vinodliyanage/itqa-group-assignment","owner":"vinodliyanage","description":"QA Automation Assignment: Functional Testing with Cypress and Cucumber","archived":false,"fork":false,"pushed_at":"2025-01-04T04:31:44.000Z","size":60414,"stargazers_count":2,"open_issues_count":7,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-09T18:02:03.594Z","etag":null,"topics":["api","bdd","cucumber","cypress","gherkin","nodejs","testing","ui"],"latest_commit_sha":null,"homepage":"https://vinodliyanage.github.io/itqa-group-assignment/\u003cbranch name\u003e/index.html","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/vinodliyanage.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":"2024-12-16T06:10:16.000Z","updated_at":"2025-01-04T04:31:47.000Z","dependencies_parsed_at":"2025-04-09T17:56:24.943Z","dependency_job_id":null,"html_url":"https://github.com/vinodliyanage/itqa-group-assignment","commit_stats":null,"previous_names":["vinodliyanage/itqa-group-assignment"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/vinodliyanage/itqa-group-assignment","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vinodliyanage%2Fitqa-group-assignment","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vinodliyanage%2Fitqa-group-assignment/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vinodliyanage%2Fitqa-group-assignment/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vinodliyanage%2Fitqa-group-assignment/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vinodliyanage","download_url":"https://codeload.github.com/vinodliyanage/itqa-group-assignment/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vinodliyanage%2Fitqa-group-assignment/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29925683,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-27T19:37:42.220Z","status":"online","status_checked_at":"2026-02-28T02:00:07.010Z","response_time":90,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["api","bdd","cucumber","cypress","gherkin","nodejs","testing","ui"],"created_at":"2025-01-03T23:17:31.598Z","updated_at":"2026-02-28T05:19:45.666Z","avatar_url":"https://github.com/vinodliyanage.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# QA Automation Assignment: Functional Testing with Cypress and Cucumber\n\n## Test Report\n\n[204116V API Test Report](https://vinodliyanage.github.io/itqa-group-assignment/204116V/api-test/book-create/index.html)\n[204116V UI Test Report](https://vinodliyanage.github.io/itqa-group-assignment/204116V/ui-test/pim/index.html)\n\n\n## Submitted By:\n- **Team Members**:\n  1. Dileesha G A S\n  2. Liyanage V.P.S\n  3. Madhuwanthi W.A.I \n  4. Athilani G.A.S\n  5. Gunasiri G.C.S\n  6. Sara A.N.Z\n\n## Assignment Details\n- **Project Title**: Functional Testing of a Demo Application\n- **Objective**: To automate functional testing for both UI and API using Cypress and Cucumber.\n- **Tools Used**:\n  - **Cypress**: For end-to-end testing.\n  - **Cucumber**: For writing test cases.\n  - **Node.js**: For managing dependencies and running tests.\n\n---\n\n## Project Structure\n\nThis project is organized into two main testing categories: API tests and UI tests.\n\n- **[API Tests](./api-tests/)**: This folder contains the API test cases for the library system. The tests are written using Cypress and Cucumber, designed to test the book creation, updating, deletion, and retrieval APIs.\n- **[UI Tests](./ui-tests/)**: This folder contains the UI test cases for the library system. The tests are written using Cypress and Cucumber, designed to test user interface interactions with the application.\n\n---\n\n## How to Run the Tests\n\n### Prerequisite\n\nFirst, clone this repository to your local machine:\n\n```bash\ngit clone https://github.com/vinodliyanage/itqa-group-assignment.git\ncd api-tests # for api testings\ncd ui-tests  # for ui\n```\n\n### API Tests\n\nTo run the API tests, follow these steps:\n\n1. Navigate to the `api-tests` folder:\n\n   ```bash\n   cd api-tests\n   ```\n\n2. Install the required dependencies:\n\n   ```bash\n   npm install\n   ```\n\n3. Start the API server (ensure the server is running locally at `http://localhost:7081`):\n\n   ```bash\n   npm run server\n   ```\n\n4. Open Cypress and run the API tests:\n\n   ```bash\n   npm run cy\n   ```\n\nFor more details on running the API tests, refer to the [API Tests README](./api-tests/README.md).\n\n### UI Tests\n\nTo run the UI tests, follow these steps:\n\n1. Navigate to the `ui-tests` folder:\n\n   ```bash\n   cd ui-tests\n   ```\n\n2. Install the required dependencies:\n\n   ```bash\n   npm install\n   ```\n\n3. Open Cypress and run the UI tests:\n\n   ```bash\n   npm run cy\n   ```\n\nFor more details on running the UI tests, refer to the [UI Tests README](./ui-tests/README.md).\n\n---\n\n## License\n\nThis project is licensed under the ISC License.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvinodliyanage%2Fitqa-group-assignment","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvinodliyanage%2Fitqa-group-assignment","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvinodliyanage%2Fitqa-group-assignment/lists"}