{"id":21881557,"url":"https://github.com/roboticautomata/serenity-bdd-ui-testing-example","last_synced_at":"2026-04-16T05:34:36.446Z","repository":{"id":223053899,"uuid":"759193208","full_name":"RoboticAutomata/serenity-bdd-ui-testing-example","owner":"RoboticAutomata","description":"UI Test Automation Example with Serenity BDD Page Object Model","archived":false,"fork":false,"pushed_at":"2024-03-02T15:04:39.000Z","size":206,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-22T00:44:50.615Z","etag":null,"topics":["cucumber","java","selenium","serenity"],"latest_commit_sha":null,"homepage":"https://linktr.ee/roboticautomata","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/RoboticAutomata.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2024-02-17T22:40:47.000Z","updated_at":"2024-02-18T20:54:00.000Z","dependencies_parsed_at":"2024-03-02T16:25:02.959Z","dependency_job_id":"9d0810fa-22eb-4def-a988-ec4437e4c2f0","html_url":"https://github.com/RoboticAutomata/serenity-bdd-ui-testing-example","commit_stats":null,"previous_names":["roboticautomata/serenity-bdd-ui-testing"],"tags_count":0,"template":false,"template_full_name":"serenity-bdd/serenity-junit-pageobjects-starter","purl":"pkg:github/RoboticAutomata/serenity-bdd-ui-testing-example","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RoboticAutomata%2Fserenity-bdd-ui-testing-example","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RoboticAutomata%2Fserenity-bdd-ui-testing-example/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RoboticAutomata%2Fserenity-bdd-ui-testing-example/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RoboticAutomata%2Fserenity-bdd-ui-testing-example/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RoboticAutomata","download_url":"https://codeload.github.com/RoboticAutomata/serenity-bdd-ui-testing-example/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RoboticAutomata%2Fserenity-bdd-ui-testing-example/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31872661,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-15T15:24:51.572Z","status":"online","status_checked_at":"2026-04-16T02:00:06.042Z","response_time":69,"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":["cucumber","java","selenium","serenity"],"created_at":"2024-11-28T09:19:30.175Z","updated_at":"2026-04-16T05:34:36.428Z","avatar_url":"https://github.com/RoboticAutomata.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# UI Test Automation with Serenity BDD (Selenium / Cucumber)\n\nAn example UI Test Automation using Serenity (Selenium), Cucumber and the Page Object Model.\n\n\n\u003c!--ts--\u003e\n* [UI Test Automation with Serenity BDD](#ui-test-automation-with-serenity-bdd)\n   * [Application under Test](#application-under-test)\n   * [Example Scenario to Automate](#example-scenario-to-automate)\n      * [Login Page](#login-page)\n      * [Add User Page](#add-user-page)\n      * [Contact List](#contact-list)\n   * [Project Structure](#project-structure)\n   * [Running the tests under Maven](#running-the-tests-under-maven)\n   * [Viewing the reports](#viewing-the-reports)\n   * [Resources](#resources)\n\n\u003c!-- Created by https://github.com/ekalinin/github-markdown-toc --\u003e\n\u003c!-- Added by: rashad, at: Sat Feb 17 06:47:46 PM EST 2024 --\u003e\n\n\u003c!--te--\u003e\n\n## Application under Test\n\nWe will be testing the [Thinking Tester Contact List App](https://thinking-tester-contact-list.herokuapp.com/) `CLA` for short.\n\n## Example Scenario to Automate\nOur test covers the specific workflow of opening the login page, creating a new user and logging out.\n\n### Login Page\n![Login Page](images/LoginPage.png)\n\n### Add User Page\n![Add User Page](images/AddUserPage.png)\n\n### Contact List\n![Contact List Page](images/ContactListPage.png)\n\n\n## Project Structure\n```\nsrc/test/resources/features\n└── registration\n    └── user_registration.feature\n```\n\n```\nsrc/test/java/starter\n├── actions\n│   ├── AddUserSteps.java\n│   ├── ContactListSteps.java\n│   └── LoginSteps.java\n├── CucumberTestSuite.java\n├── pageobjects\n│   ├── AddUserPage.java\n│   ├── ContactListPage.java\n│   └── LoginPage.java\n└── steps\n    ├── AddUserStepDefinitions.java\n    ├── ContactListStepDefinitions.java\n    └── LoginStepDefinitions.java\n```\n## Running the tests under Maven\n\nTo run the tests with Maven, open a command window and run:\n\n```\n./mvnw clean verify\n```\n\n## Viewing the reports\n\nSerenity test reports are located in the `target/site/serenity` directory.\n\n## Resources\n\n- [Youtube Demo Video](https://youtu.be/PmX_xFgO6Pc?feature=shared)\n- [Medium Blog Tutorial](https://medium.com/@RoboticAutomata/ui-test-automation-tutorial-with-serenity-bdd-96187d29fbe7)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Froboticautomata%2Fserenity-bdd-ui-testing-example","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Froboticautomata%2Fserenity-bdd-ui-testing-example","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Froboticautomata%2Fserenity-bdd-ui-testing-example/lists"}