{"id":21758921,"url":"https://github.com/anshul-sonpure/cucumber_tutorials","last_synced_at":"2026-03-02T10:02:39.222Z","repository":{"id":156022451,"uuid":"447216049","full_name":"Anshul-Sonpure/Cucumber_Tutorials","owner":"Anshul-Sonpure","description":"This a Cucumber project for those who want to learn Cucumber and performs some hands-ons. Feel free to clone the repo and make changes as per your learning/requirements.","archived":false,"fork":false,"pushed_at":"2023-06-15T07:52:14.000Z","size":8870,"stargazers_count":1,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-07T18:45:59.264Z","etag":null,"topics":["automated-testing","bdd","bdd-style-testing-framework","cucumber","cucumber-framework","gherkin","java","selenium-webdriver"],"latest_commit_sha":null,"homepage":"https://medium.com/@theautobot/how-to-build-a-robust-automation-framework-with-cucumber-and-selenium-ebcc8984fdc5","language":"Java","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/Anshul-Sonpure.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":"2022-01-12T12:50:15.000Z","updated_at":"2023-03-17T17:32:32.000Z","dependencies_parsed_at":null,"dependency_job_id":"a8e02915-4777-4b09-901a-61d1f0f1b9b1","html_url":"https://github.com/Anshul-Sonpure/Cucumber_Tutorials","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Anshul-Sonpure/Cucumber_Tutorials","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Anshul-Sonpure%2FCucumber_Tutorials","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Anshul-Sonpure%2FCucumber_Tutorials/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Anshul-Sonpure%2FCucumber_Tutorials/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Anshul-Sonpure%2FCucumber_Tutorials/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Anshul-Sonpure","download_url":"https://codeload.github.com/Anshul-Sonpure/Cucumber_Tutorials/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Anshul-Sonpure%2FCucumber_Tutorials/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29998084,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-02T09:59:02.300Z","status":"ssl_error","status_checked_at":"2026-03-02T09:59:02.001Z","response_time":60,"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":["automated-testing","bdd","bdd-style-testing-framework","cucumber","cucumber-framework","gherkin","java","selenium-webdriver"],"created_at":"2024-11-26T11:24:37.077Z","updated_at":"2026-03-02T10:02:39.165Z","avatar_url":"https://github.com/Anshul-Sonpure.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Cucumber_Tutorials\n\nHi All,\\\nThis a Cucumber project for those who want to learn Cucumber and performs some hands-ons.\nFeel free to clone the repo and make changes as per your learning/requirements.\nThis is a maven based project so all you need to do is clone the project in your IDE and\\\nrun -- `mvn clean install`.\nAbout this project, we have all the Features in Features folder and corresponding stepdefinitions in\\\nsrc/test/java/stepdefinitions folder.\\\nTestRunner class in present in src/main/java/TestRunner named as CucumberRunner.\\\n### Some basics of Cucumber\n#### What Is Cucumber?\nCucumber lets you write test scenarios using plain language. \nIt is a tool for behavior-driven development (BDD). BDD is a software development process that encourages cross-functional collaboration, in part, through use of a plain-English scripting language called “gherkin” that anyone, technical or not, can read, write, and understand. \nThe tests are first written in a simple scenario form that describes the expected behavior of the system from the user’s perspective.\\\nCucumber includes the following three files:\\\n1. Feature file: Here we write the Features to be tested in Gherkin format i.e. Given When Then. We can even run the feature file to execute the test scripts written in the Stepdef file.\n2. Stepdef file: Once the Feature file is ready, each sentence of the Feature file can be further implemented over the Stepdef file.\n3. Runner File: This is just to execute the actual test script written over the Stepdef file by referring to the feature file. Apart from that, it has many other options for customization, reporting, selective execution, etc.\\\n\nIn our project I have created 6 Feature files based on few **Cucumber** concept.In the feature file I've mentioned what concept we are going to implement and test.\\\nHowever just for update in this project I have tried to make clear concepts like.\n- Login.feature --\u003e implements the concept of Background.\n- RegisterUser.feature --\u003e implements the concept of DataTables\n- Scenario_Outline.feature --\u003e implements the concept of Scenario Outline and Example keyboard.\n- CaptureGroup.feature --\u003e implements the concept of capture group.\n- Hooks.feature --\u003e implements the concept of Hooks where we have used @Before and @After\n- Tags.feature --\u003e implements the concept of Tags @smoke,@regression and @prodfix\n\n**Note:** If you clone this repo and run it you will notice browser is getting opened twice and that is because we have used Hooks and also we have implemented the concept of inheritence where we called driver from DriverUtils package.This is because I dont want to implement everything in a single file 🤭. Rest everything is fine and working.\\\nAlso sharing my book on Cucumber and PPT's from my course.\n\nThank You\\\nHappy Coding,\\\nLearn,Code and Earn\\\nStay Safe and Stay Positive :)\n\n\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanshul-sonpure%2Fcucumber_tutorials","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fanshul-sonpure%2Fcucumber_tutorials","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanshul-sonpure%2Fcucumber_tutorials/lists"}