{"id":16853616,"url":"https://github.com/sim51/maven-testrunner-plugin","last_synced_at":"2025-08-04T03:33:26.183Z","repository":{"id":142401803,"uuid":"2347555","full_name":"sim51/maven-testrunner-plugin","owner":"sim51","description":"A maven to plugin to launch selenium test","archived":false,"fork":false,"pushed_at":"2011-10-20T16:41:10.000Z","size":1832,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-25T07:45:36.902Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/sim51.png","metadata":{"files":{"readme":"README","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}},"created_at":"2011-09-08T09:49:15.000Z","updated_at":"2013-12-14T13:28:32.000Z","dependencies_parsed_at":"2023-03-13T14:30:50.597Z","dependency_job_id":null,"html_url":"https://github.com/sim51/maven-testrunner-plugin","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/sim51/maven-testrunner-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sim51%2Fmaven-testrunner-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sim51%2Fmaven-testrunner-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sim51%2Fmaven-testrunner-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sim51%2Fmaven-testrunner-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sim51","download_url":"https://codeload.github.com/sim51/maven-testrunner-plugin/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sim51%2Fmaven-testrunner-plugin/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268644482,"owners_count":24283334,"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-08-04T02:00:09.867Z","response_time":79,"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":[],"created_at":"2024-10-13T13:52:27.282Z","updated_at":"2025-08-04T03:33:26.158Z","avatar_url":"https://github.com/sim51.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"=============================================\n\tDescription\n=============================================\nA maven plugin that help to do selenium test.\nThis module is a port of selenium testrunner of playframework. It use the same technology, and there is some code in commons...\n\n=============================================\n\tWhy a new Selenium plugin ?\n=============================================\n* this module is headless, so it can be run on a server \n* this module embeds the testrunner selenium server\n* you can test your selenium script directly on your develoment 's plateform (no need of a selenium server)\n\n=============================================\n\tHow to use it ?\n=============================================\n* Add this repository into your pom.xml :\n\t\u003crepository\u003e\n\t\t\u003cid\u003elogisima-releases\u003c/id\u003e\n\t\t\u003curl\u003ehttps://github.com/logisima/maven-repository/releases\u003c/url\u003e\n\t\u003c/repository\u003e\n\n* Add this to your build phase into your pom.xml\n\t\u003cplugin\u003e\n\t\t\u003cgroupId\u003elogisima\u003c/groupId\u003e\n\t\t\u003cartifactId\u003emaven-testrunner-plugin\u003c/artifactId\u003e\n\t\t\u003cversion\u003e1.3\u003c/version\u003e\n\t\t\u003cconfiguration\u003e\n\t\t\t\u003cbaseApplicationUrl\u003ehttp://localhost:8080/monApp\u003c/baseApplicationUrl\u003e\t\n\t\t\u003c/configuration\u003e\n\t\u003c/plugin\u003e\nWhere \"http://localhost:8080/monApp\" is the url of your application to test. \n \n* Create your selenium script using the same syntax as play! (@see http://www.playframework.org/documentation/1.2.3/cheatsheet/tests) :\n    - your selenium script must be into the ./src/test/selenium folder ! (@see plugin configuration)\n    - your selenium script must have name like *.html\n\n* then you can use those two commands :\n    - mvn testrunner:run : launch the testrunner server (by default port is 7777), so if you open your browser at http://localhost:7777/ you will see the list of yours selenium script and run it.\n    - mvn testrunner:auto-run : launch in command line all your selenium test, and if one failed, the build failed !\n\n==============================================\n\tPlugin configuration\n==============================================\n* baseApplicationUrl : the url of the application to test.\n* port : the port of the selenium server that the plugin start (default: 7777)\n* seleniumSourceDirectory : folder where you put yuour selenium script. By default it's ./src/test/selenuim\n\nMoreover, the plugin is base on the following maven variable :\n* ${project.build.directory}","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsim51%2Fmaven-testrunner-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsim51%2Fmaven-testrunner-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsim51%2Fmaven-testrunner-plugin/lists"}