{"id":20143915,"url":"https://github.com/masumrazait/grocerymart","last_synced_at":"2025-09-10T08:06:44.956Z","repository":{"id":279158127,"uuid":"927256866","full_name":"masumrazait/GroceryMart","owner":"masumrazait","description":null,"archived":false,"fork":false,"pushed_at":"2025-02-24T04:39:12.000Z","size":14944,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-24T05:29:32.106Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","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/masumrazait.png","metadata":{},"created_at":"2025-02-04T17:00:21.000Z","updated_at":"2025-02-24T04:39:18.000Z","dependencies_parsed_at":null,"dependency_job_id":"932028b1-3ee8-45b4-8dcb-c35632ae513f","html_url":"https://github.com/masumrazait/GroceryMart","commit_stats":null,"previous_names":["masumrazait/grocerymart"],"tags_count":null,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/masumrazait%2FGroceryMart","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/masumrazait%2FGroceryMart/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/masumrazait%2FGroceryMart/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/masumrazait%2FGroceryMart/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/masumrazait","download_url":"https://codeload.github.com/masumrazait/GroceryMart/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241587914,"owners_count":19986627,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["automated-testing","bdd-framework","cucumber-java","java","selenium-webdriver","testng"],"created_at":"2024-11-13T22:07:30.703Z","updated_at":"2025-03-02T23:43:41.331Z","avatar_url":"https://github.com/masumrazait.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GroceryMart Automation Project\n\nThis repository contains the automated testing framework for the **GroceryMart** web application, developed using **Selenium**, **Java**, and **Cucumber** for behavior-driven development (BDD). This framework enables end-to-end testing to validate core functionalities and ensure a smooth user experience.\n\n## Table of Contents\n- [Technologies Used](#technologies-used)\n- [Project Structure](#project-structure)\n- [Getting Started](#getting-started)\n- [Running the Tests](#running-the-tests)\n- [Test Reporting](#test-reporting)\n- [Contributing](#contributing)\n- [License](#license)\n\n## Technologies Used\n- **Java** - Programming language for building test scripts\n- **Selenium WebDriver** - Browser automation tool\n- **Cucumber** - BDD framework to define test scenarios in plain English\n- **TestNG** - Test runner for executing the tests\n- **Maven** - Dependency management and build tool\n\n## Project Structure\n```plaintext\nGroceryMart-Automation\n├── Report\n│   ├── cucumber-reports.html\n│   └── cucumber-reports.json\n├── src\n│   ├── main\n│   │   └── java\n│   │       └── utilities          # Helper classes (e.g., WebDriver setup, configuration)\n│   └── test\n│       ├── java\n│       │   ├── features            # Cucumber feature files\n│       │   │   └── searchProduct.feature\n│       │   ├── pageObjects         # Page Object Model (POM) classes\n│       │   │   ├── LandingPage.java\n│       │   │   ├── OfferPage.java\n│       │   │   └── PageObjectsManager.java\n│       │   ├── runners             # Cucumber test runners\n│       │   │   └── TestRunner.java\n│       │   ├── stepDefinitions     # Step definition classes for Cucumber\n│       │   │   ├── Given.java\n│       │   │   ├── Hooks.java\n│       │   │   ├── LandingPagesStepDefinition.java\n│       │   │   └── OfferPagesStepDefinition.java\n│       │   ├── utils               # Utility classes\n│       │   │   ├── GenericUtils.java\n│       │   │   ├── TestBase.java\n│       │   │   └── TestContextSetup.java\n│       └── resources               # Additional resources (e.g., data files, config)\n│           ├── chromedriver.exe\n│           └── global.properties\n├── target\n├── untitled\n├── pom.xml                         # Maven configuration file\n└── README.md                       # Project documentation\n\n```\n\n## Getting Started\n\n### Prerequisites\n- **Java** (version 11 or higher)\n- **Maven** (latest version)\n- **ChromeDriver** or **GeckoDriver** depending on your browser of choice\n\n### Installation\n1. Clone the repository:\n   ```bash\n   git clone https://github.com/masumrazait/GroceryMart.git\n   ```\n2. Navigate to the project directory:\n   ```bash\n   cd GroceryMart\n   ```\n3. Install the dependencies:\n   ```bash\n   mvn clean install\n   ```\n\n## Running the Tests\n\n### Run All Tests\nTo execute all tests, use the command:\n```bash\nmvn test\n```\n\n### Run Tests by Tag\nTo run specific test scenarios using Cucumber tags, use:\n```bash\nmvn test -Dcucumber.options=\"--tags @tagName\"\n```\nReplace `@tagName` with the desired tag from the feature files.\n\n## Test Reporting\nUpon completion, test reports are generated in `Report/cucumber-reports`. Open the `index.html` in a browser to view detailed reports of test execution.\n\n## Contributing\nIf you'd like to contribute to this project:\n1. Fork the repository.\n2. Create a new branch for your feature or bugfix.\n3. Make your changes and commit them.\n4. Open a pull request, and describe the changes you've made.\n\n## License\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmasumrazait%2Fgrocerymart","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmasumrazait%2Fgrocerymart","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmasumrazait%2Fgrocerymart/lists"}