{"id":18794314,"url":"https://github.com/soarcn/formfiller","last_synced_at":"2025-09-02T06:32:47.941Z","repository":{"id":57718321,"uuid":"280658469","full_name":"soarcn/FormFiller","owner":"soarcn","description":"Android helper library to populate form fields with a predefined data set","archived":false,"fork":false,"pushed_at":"2020-07-19T07:41:53.000Z","size":1312,"stargazers_count":6,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-03T11:43:49.827Z","etag":null,"topics":["android","form","formfiller","testing"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","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/soarcn.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}},"created_at":"2020-07-18T13:07:52.000Z","updated_at":"2025-02-22T00:38:26.000Z","dependencies_parsed_at":"2022-09-14T22:42:07.273Z","dependency_job_id":null,"html_url":"https://github.com/soarcn/FormFiller","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/soarcn/FormFiller","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soarcn%2FFormFiller","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soarcn%2FFormFiller/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soarcn%2FFormFiller/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soarcn%2FFormFiller/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/soarcn","download_url":"https://codeload.github.com/soarcn/FormFiller/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soarcn%2FFormFiller/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273244301,"owners_count":25070958,"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-09-02T02:00:09.530Z","response_time":77,"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":["android","form","formfiller","testing"],"created_at":"2024-11-07T21:28:58.355Z","updated_at":"2025-09-02T06:32:47.602Z","avatar_url":"https://github.com/soarcn.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"FormFiller\n=========\n![Maven](https://maven-badges.herokuapp.com/maven-central/com.cocosw/formfiller/badge.png?style=plastic)\n\nAndroid helper library to populate form fields with predefined data set\n\n![Sample](https://github.com/soarcn/FormFiller/blob/master/arts/formfiller.gif?raw=true)\n\n\nUsage\n=======\n\n```kotlin\nclass DemoApp : Application() {\n    override fun onCreate() {\n        super.onCreate()\n        // Enable FormFiller for debug builds only\n        if (BuildConfig.DEBUG) {\n            FormFiller.Builder(this)\n                // Fill the form by pressing f key from external keyboard    \n                .keyCode(KeyEvent.KEYCODE_F)\n                // Fill the form by double tapping on ui    \n                .doubleTap()\n                .scenario {\n                    id(R.id.username, \"username\")\n                    id(R.id.password, \"password\")\n                }\n                .build()\n        }\n    }\n}\n```\n\nAdvanced usage\n=======\n\nDefine different data-set and switch between them inside the app\n\n```kotlin\n            FormFiller.Builder(this)\n                .doubleTap()\n                // Enable scenario switcher and open ui by long pressing with 2 fingers on ui\n                .enableScenariosSwitcher()\n                .scenario {\n                    id(R.id.username, \"username\")\n                    id(R.id.password, \"password\")\n                }\n                .scenario(\"Unhappy\") {\n                    id(R.id.username, \"wrong\")\n                    id(R.id.password, \"wrong\")\n                }\n                .build()\n```\n\n\n```kotlin\n//select edittext by tag name\ntag(\"username\") {\n   //manipulate edit text\n   it.setText(Random.toString())\n}\n```\n\nDownload\n=====\n```groovy\n    implementation 'com.cocosw:formfiller:1.0'\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsoarcn%2Fformfiller","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsoarcn%2Fformfiller","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsoarcn%2Fformfiller/lists"}