{"id":15174132,"url":"https://github.com/haite4/cypress-cucumber-task","last_synced_at":"2026-01-27T14:32:43.250Z","repository":{"id":249898073,"uuid":"832892280","full_name":"haite4/cypress-cucumber-task","owner":"haite4","description":"cypress-cucumber-e2e testing with report.  https://haite4.github.io/cypress-cucumber-task/","archived":false,"fork":false,"pushed_at":"2024-07-29T10:55:31.000Z","size":19006,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-31T22:09:05.846Z","etag":null,"topics":["cucumber","cypress","cypress-cucumber","github-actions","github-pages","html-report"],"latest_commit_sha":null,"homepage":"","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/haite4.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-07-24T00:09:54.000Z","updated_at":"2024-07-29T10:50:52.000Z","dependencies_parsed_at":"2024-07-29T14:22:30.338Z","dependency_job_id":null,"html_url":"https://github.com/haite4/cypress-cucumber-task","commit_stats":{"total_commits":19,"total_committers":1,"mean_commits":19.0,"dds":0.0,"last_synced_commit":"7a4567694ae76ccc76147d295e437dd8ff27b35c"},"previous_names":["haite4/cypress-cucumber-task"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/haite4/cypress-cucumber-task","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/haite4%2Fcypress-cucumber-task","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/haite4%2Fcypress-cucumber-task/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/haite4%2Fcypress-cucumber-task/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/haite4%2Fcypress-cucumber-task/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/haite4","download_url":"https://codeload.github.com/haite4/cypress-cucumber-task/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/haite4%2Fcypress-cucumber-task/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28815095,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-27T12:25:15.069Z","status":"ssl_error","status_checked_at":"2026-01-27T12:25:05.297Z","response_time":168,"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":["cucumber","cypress","cypress-cucumber","github-actions","github-pages","html-report"],"created_at":"2024-09-27T11:24:32.945Z","updated_at":"2026-01-27T14:32:43.234Z","avatar_url":"https://github.com/haite4.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Cypress-Cucumber-Task\n\n## Summary\n\nThis repository includes 17 automated tests written using the Cypress framework, Cucumber, and JavaScript. These tests validate the functionality of key elements on the [Sauce Demo](https://www.saucedemo.com/) website, including the login, inventory, cart, and checkout pages.\n\n## Requirements\n\n- [Node.js v14 or higher](https://nodejs.org/en/download/package-manager)\n- [Cypress](https://docs.cypress.io/guides/getting-started/installing-cypress)\n- [@badeball/cypress-cucumber-preprocessor](https://github.com/badeball/cypress-cucumber-preprocessor)\n- [@bahmutov/cypress-esbuild-preprocessor](https://github.com/bahmutov/cypress-esbuild-preprocessor)\n- [multiple-cucumber-html-reporter](https://www.npmjs.com/package/multiple-cucumber-html-reporter)\n- [cucumber-json-formatter](https://github.com/cucumber/json-formatter)\n\n## Steps to Install\n\n1. Clone the repository:\n    ```sh\n    git clone https://github.com/haite4/cypress-cucumber-task\n    ```\n2. Navigate to the project directory:\n    ```sh \n    cd cypress-cucumber-task\n    ```\n3. Install dependencies:\n    ```sh\n    npm install cypress --save-dev\n    npm install \n    ``` \n\n## Steps to Launch\n\n1. **Run all Cypress tests in headless mode**:\n    ```sh\n    npm run cypress:run\n    ```\n    To use a configuration file for mobile testing:\n    ```sh\n    npm run test:mobile\n    ```\n\n2. **Run tests with a specific browser**:\n    - For Chrome:\n        ```sh\n        npm run test:chrome\n        ```\n    - For Firefox:\n        ```sh\n        npm run test:firefox\n        ```\n    - For Edge:\n        ```sh\n        npm run test:edge\n        ```\n\n3. **Open Cypress Test Runner for interactive testing**:\n    ```sh\n    npm run cypress:open\n    ```\n    This command will open the Cypress Test Runner, allowing you to run and debug tests interactively in the Cypress GUI.\n    \n4. **Run tests for specific pages**:\n    - **Login Page Tests**:\n        ```sh\n        npm run test:login:run\n        ```\n    - **Inventory Page Tests**:\n        ```sh\n        npm run test:inventory:run\n        ```\n    - **Cart Page Tests**:\n        ```sh\n        npm run test:cart:run\n        ```\n    - **Checkout Page Tests**:\n        ```sh\n        npm run test:checkout:run\n        ```\n## Steps to Launch the Report\n1. Serve the html report:\n    ```sh\n    npm run cypress:report\n    ```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhaite4%2Fcypress-cucumber-task","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhaite4%2Fcypress-cucumber-task","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhaite4%2Fcypress-cucumber-task/lists"}