{"id":20800308,"url":"https://github.com/atbashee/web-tester","last_synced_at":"2026-04-30T19:32:20.692Z","repository":{"id":87369575,"uuid":"105401408","full_name":"atbashEE/web-tester","owner":"atbashEE","description":"JavaFX Web tester","archived":false,"fork":false,"pushed_at":"2019-02-17T14:37:08.000Z","size":85,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-05T04:26:46.166Z","etag":null,"topics":["java8","javaee","javafx","shrinkwrap","testing","wildfly-swarm"],"latest_commit_sha":null,"homepage":null,"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/atbashEE.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":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-09-30T21:16:12.000Z","updated_at":"2019-02-17T14:37:10.000Z","dependencies_parsed_at":null,"dependency_job_id":"b7154a6a-4a73-4b7a-bb3e-10a754f8bce3","html_url":"https://github.com/atbashEE/web-tester","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/atbashEE/web-tester","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atbashEE%2Fweb-tester","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atbashEE%2Fweb-tester/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atbashEE%2Fweb-tester/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atbashEE%2Fweb-tester/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/atbashEE","download_url":"https://codeload.github.com/atbashEE/web-tester/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atbashEE%2Fweb-tester/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32475192,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"ssl_error","status_checked_at":"2026-04-30T13:12:06.837Z","response_time":57,"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":["java8","javaee","javafx","shrinkwrap","testing","wildfly-swarm"],"created_at":"2024-11-17T18:13:14.542Z","updated_at":"2026-04-30T19:32:20.675Z","avatar_url":"https://github.com/atbashEE.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# web-tester\nJavaFX Web tester\n\n## License\n\nProject is available under \"Apache License Version 2\"\n\nSome concepts and code snippets come from the UI4J, https://github.com/webfolderio/ui4j.\n\n## Limitations\n\nIt only runs on Oracle JDK 8u40 and later.\nIt will not run on Java 9 (as it uses internal classes)\nIt will only run on Oracle JDK (restriction will be removed as soon as possible)\n\n## Example usage.\n\n* Create a Test case which extends from **AbstractWebTest** and which will be executed by the custom **WebTestRunner**\n\n```java\n@RunWith(WebTestRunner.class)\npublic class JSFTestIT extends AbstractWebTest {\n    \n}\n``` \n\n* Create the WAR file with the code required for testing.  It uses ShrinkWrap under the hood, but a custom builder, **WebArchiveBuilder** can be used.\n\n```java\n    WebArchive archive = WebArchiveBuilder.create(\"test.war\")\n            .addClass(HelloBean.class)\n            .addWebPage(\"helloWorld.xhtml\")\n            .build();\n``` \n\n* Deploy the Archive with WildFly Swarm within a **@BeforeClass** static method.\n\n```java\n    @BeforeClass\n    public static void deploy() {\n        WebArchive archive = WebArchiveBuilder.create.... ;\n\n        deployApplication(archive);\n    }\n``` \n\n* Open a web page within the _'browser'_.\n\n```java\n    @Test\n    public void checkHelloWorld() {\n\n        WebPage webPage = openPage(\"http://localhost:8080/helloWorld.xhtml\");\n    }\n\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatbashee%2Fweb-tester","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fatbashee%2Fweb-tester","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatbashee%2Fweb-tester/lists"}