{"id":21212579,"url":"https://github.com/in7hesky/java-selenium-allure-framework","last_synced_at":"2025-07-25T02:37:49.493Z","repository":{"id":142656093,"uuid":"417561016","full_name":"in7hesky/java-selenium-allure-framework","owner":"in7hesky","description":"A framework for automation of Web UI testing using Selenium, Allure and some other tools.","archived":false,"fork":false,"pushed_at":"2021-11-11T23:40:02.000Z","size":93,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-14T23:43:01.135Z","etag":null,"topics":["allure","assertj","junit5","maven","selenium-webdriver","webdrivermanager"],"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/in7hesky.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":"2021-10-15T16:08:26.000Z","updated_at":"2023-09-26T19:46:31.000Z","dependencies_parsed_at":null,"dependency_job_id":"1bf42428-231d-4712-b9da-3e61aa191b23","html_url":"https://github.com/in7hesky/java-selenium-allure-framework","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/in7hesky/java-selenium-allure-framework","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/in7hesky%2Fjava-selenium-allure-framework","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/in7hesky%2Fjava-selenium-allure-framework/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/in7hesky%2Fjava-selenium-allure-framework/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/in7hesky%2Fjava-selenium-allure-framework/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/in7hesky","download_url":"https://codeload.github.com/in7hesky/java-selenium-allure-framework/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/in7hesky%2Fjava-selenium-allure-framework/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266944996,"owners_count":24010490,"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","status":"online","status_checked_at":"2025-07-25T02:00:09.625Z","response_time":70,"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":["allure","assertj","junit5","maven","selenium-webdriver","webdrivermanager"],"created_at":"2024-11-20T21:11:11.993Z","updated_at":"2025-07-25T02:37:49.468Z","avatar_url":"https://github.com/in7hesky.png","language":"Java","readme":"### Project Description ###\n\nThis is an example of Web UI testing framework using Selenium.\n\nSystem Under Test (SUT): NASA official website - https://www.nasa.gov/. \n\nList of main tools and libraries used:\n\n- Maven\n- Junit5\n- Selenium-Java\n- WebDriverManager\n- Allure-Junit5\n- AssertJ\n- Allure-AssertJ\n- Jenkins\n\n\n## 1. Prerequisites\nBefore running tests make sure you have installed:\n- JDK 11: https://openjdk.java.net/projects/jdk/11/\n- Maven 3.6.3 and above: https://maven.apache.org/download.cgi\n- Chrome / Firefox browser\n- [Optional] Allure 2.15.0 and above to manually generate reports. See https://docs.qameta.io/allure/ \\\n  for installation guidance\n\n**NOTE:** You don't need to install any WebDriver version manually, the process is fully automated by **WebDriverManager**.\n\n## 2. Running tests locally\n\n\n#### 2.1 Load the project from the GitHub\nProject URL: https://github.com/in7hesky/java-selenium-allure-framework\nFor example, you may load the project using the command line:\n```\ngit clone git@github.com:in7hesky/java-selenium-allure-framework.git\n```\n#### 2.2 Execute run command\nAs soon as project is loaded, go to the root directory and perform a command:\n```\nmvn clean test\n```\nTests will be executed in **Chrome** by default, though **Firefox** browser is also supported.  \n\nIn order to run the tests in **Firefox** provide maven with the according argument:\n`-Dbrowser=firefox`.\nFurthermore, you have an ability to run tests in headless mode by passing `-Dheadless=true` argument.  \n\nFor example, that's how **firefox headless** maven command should look like:\n```\nmvn clean test -Dbrowser=firefox -Dheadless=true\n```\nThat will run all the tests concurrently and generate the report data. If you wish to run a particular test class you may use:\n```\nmvn clean test -Dtest=\"FilterTest\"\n```\nNote that the name of a class is used, not the path.\n## 3. Generating the report\nThe report data always appear after running tests. It's located in `/target/allure-results/`.\nYou may generate a report using:\n```\nallure serve target/allure-results\n```\n**NOTE:** If you want to change the default report data path, you can configure `allure.properties` file located in\n`src/test/resources` directory.\n\n### Extra: Jenkins integration\nYou may also use the `Jenkinsfile` located in the root directory to rapidly build a demo pipeline to see tests runs\nand their results as Allure reports. \n\nMake sure you have the \"Allure\" Jenkins plugin installed!\n\nRefer to https://www.jenkins.io/doc/book/pipeline/ in case you want to find out more\nabout `Jenkinsfile` usage.\n\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fin7hesky%2Fjava-selenium-allure-framework","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fin7hesky%2Fjava-selenium-allure-framework","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fin7hesky%2Fjava-selenium-allure-framework/lists"}