{"id":22616090,"url":"https://github.com/ferdyciputra/serenity-starter-project-web","last_synced_at":"2026-04-20T10:32:09.344Z","repository":{"id":216493184,"uuid":"736577055","full_name":"ferdyciputra/serenity-starter-project-web","owner":"ferdyciputra","description":"This is Starter Project Web Automation Testing Using Selenium, Cucumber, JUnit and Serenity BDD for Reporting","archived":false,"fork":false,"pushed_at":"2025-07-27T13:04:05.000Z","size":299,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-27T15:17:16.426Z","etag":null,"topics":["automated-testing","cucumber","java","junit","selenium","serenity","serenity-bdd"],"latest_commit_sha":null,"homepage":"","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/ferdyciputra.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":"2023-12-28T09:29:11.000Z","updated_at":"2025-07-27T13:04:09.000Z","dependencies_parsed_at":"2024-01-10T15:24:50.658Z","dependency_job_id":"da4259b8-531f-41e5-81ba-9ad89d12c339","html_url":"https://github.com/ferdyciputra/serenity-starter-project-web","commit_stats":null,"previous_names":["ferdyciputra/serenity-starter-project-web"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ferdyciputra/serenity-starter-project-web","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ferdyciputra%2Fserenity-starter-project-web","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ferdyciputra%2Fserenity-starter-project-web/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ferdyciputra%2Fserenity-starter-project-web/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ferdyciputra%2Fserenity-starter-project-web/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ferdyciputra","download_url":"https://codeload.github.com/ferdyciputra/serenity-starter-project-web/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ferdyciputra%2Fserenity-starter-project-web/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32043004,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T00:18:06.643Z","status":"online","status_checked_at":"2026-04-20T02:00:06.527Z","response_time":94,"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":["automated-testing","cucumber","java","junit","selenium","serenity","serenity-bdd"],"created_at":"2024-12-08T19:10:39.970Z","updated_at":"2026-04-20T10:32:09.332Z","avatar_url":"https://github.com/ferdyciputra.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# serenity-starter-project-web\n\nThis Project Web Automation Testing Using Selenium, Cucumber, JUnit and Serenity BDD for Reporting\n\n## Required\n\n1. Download [Java OpenJDK 11](https://jdk.java.net/java-se-ri/11)\n   [Tutorial Installation Java in Windows](https://www.petanikode.com/java-windows/)\n\n2. Download [Maven](https://maven.apache.org/download.cgi?Preferred=ftp://ftp.osuosl.org/pub/apache/)\n\n`*If your computer already installed Java and Maven, you can skip step number 1 and 2.`\n\n## Added New Scenario BDD\n\nIn order to added some Scenario BDD, we can create new file feature in directory `src/test/resources/features`\n\n## Writing the step definitions (Breaking Down Scenario BDD Into Steps)\n\nIn order to translate the steps from Scenario BDD into executable actions, we write Java classes called Step Definitions\nin directory `src/test/java/steps`\n\n## Writing the Page Object Class\n\nPage Objects are a way of isolating the implementation details of a web page inside a class, exposing only\nbusiness-focused methods related to that page. We can create new Page Object file in\ndirectory `src/test/java/pageobjects`\n\n## Running Test Case with Configure Headless Mode\n\nYou can configure your test running headless mode or not.\\\nin file `serenity.conf` you can modified field `headless.mode`with value `true` or `false`.\\\nfile `serenity.conf` located in folder `src/test/resources`.\n\n```\nheadless.mode = true\n```\n\nor\n\n```\nheadless.mode = false\n```\n\n## Running Test Case with Default Environment\n\n```\nmvn clean verify\n```\n\n## Running Test Case with Specific Environment (file `serenity.conf`)\n\nfile `serenity.conf` located in folder `src/test/resources`\n\n```\nmvn clean verify -Denvironment=value\n```\n\n## Running Test Case with Specific Tags\n\nIf you want to run only certain scenarios or feature files based on tags (e.g., `@add_cart_feature`), you can do so using the command line by specifying the tag with `-Dtags`.\n\n```\nmvn clean verify -Dtags=@add_cart_feature\n```\n\n## See Report Serenity BDD\n\n- file report located in `target/site/serenity/index.html`\n\n![Example Serenity Report](./src/test/resources/assets/example-serenity-report-01.png)\n\n- Specific Test Details\n\n![Example Serenity Report](./src/test/resources/assets/example-serenity-report-02.png)\n\n![Example Serenity Report](./src/test/resources/assets/example-serenity-report-03.png)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fferdyciputra%2Fserenity-starter-project-web","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fferdyciputra%2Fserenity-starter-project-web","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fferdyciputra%2Fserenity-starter-project-web/lists"}