{"id":17129020,"url":"https://github.com/michaelhenry/autobot","last_synced_at":"2025-07-25T02:13:34.581Z","repository":{"id":56902567,"uuid":"206755658","full_name":"michaelhenry/AutoBot","owner":"michaelhenry","description":"DSL for creating UITestCases for iOS Development.","archived":false,"fork":false,"pushed_at":"2019-09-27T22:30:19.000Z","size":1621,"stargazers_count":4,"open_issues_count":9,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-24T06:52:45.889Z","etag":null,"topics":["automation","ios","swift","testcases","uitesting"],"latest_commit_sha":null,"homepage":"","language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/michaelhenry.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":"2019-09-06T09:02:55.000Z","updated_at":"2023-06-03T16:46:24.000Z","dependencies_parsed_at":"2022-08-21T01:50:34.598Z","dependency_job_id":null,"html_url":"https://github.com/michaelhenry/AutoBot","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/michaelhenry/AutoBot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michaelhenry%2FAutoBot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michaelhenry%2FAutoBot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michaelhenry%2FAutoBot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michaelhenry%2FAutoBot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/michaelhenry","download_url":"https://codeload.github.com/michaelhenry/AutoBot/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michaelhenry%2FAutoBot/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266944046,"owners_count":24010481,"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":["automation","ios","swift","testcases","uitesting"],"created_at":"2024-10-14T19:08:39.829Z","updated_at":"2025-07-25T02:13:34.550Z","avatar_url":"https://github.com/michaelhenry.png","language":"Swift","readme":"![Screenshot](screenshot.gif)\n\n[![Tests](https://github.com/michaelhenry/AutoBot/workflows/tests/badge.svg)](https://github.com/michaelhenry/AutoBot/actions)\n[![Deployment status](https://github.com/michaelhenry/AutoBot/workflows/deploy_to_cocoapods/badge.svg)](https://github.com/michaelhenry/AutoBot/actions)\n[![Version](https://img.shields.io/cocoapods/v/AutoBot.svg?style=flat)](https://cocoapods.org/pods/AutoBot)\n[![License](https://img.shields.io/cocoapods/l/AutoBot.svg?style=flat)](https://cocoapods.org/pods/AutoBot)\n[![Platform](https://img.shields.io/cocoapods/p/AutoBot.svg?style=flat)](https://cocoapods.org/pods/AutoBot)\n[![codebeat badge](https://codebeat.co/badges/9cf0aecd-02bb-4319-89b6-b1cd4442243a)](https://codebeat.co/projects/github-com-michaelhenry-autobot-master)\n\n# AUTOBOT\n\nA Tool for QA Testers and Developers.\n\n**Testers** could create test cases from an admin page\nwhile **Developers** could fetch and execute it inside the **XCode's UITesting target** via **API** automatically using **CI**.\n\n## Sample IOS Test Cases\n\nIn the screenshot above, the code was executed like this, so imagine, this is `Codable`, we can just fetch this from any server and/or any file!\n\n```swift\nfunc testLogin() {\n  let loginCommands:[Command] = [\n    .action(.tap, for: .text(\"emailField\")),\n    .action(.typeText(\"me@iamkel.net\"), for: .text(\"emailField\")),\n    .assert(.isEnabled(true), for: .text(\"emailField\")),\n    .assert(.isExists(true), for: .text(\"emailField\")),\n    .assert(.textValue(\"me@iamkel.net\"), for: .text(\"emailField\")),\n    .action(.tap, for: .securedText(\"passwordField\")),\n    .action(.typeText(\"supersecret\"), for: .securedText(\"passwordField\")),\n    .assert(.textValue(\"•••••••••••\"), for: .securedText(\"passwordField\")),\n    .action(.tap, for: .button(\"loginButton\")),\n  ]\n  autobot.execute(commands: loginCommands)\n}\n```\n\n\u003e Since Android has its own UITesting, this can be also implemented in Android SOON! So one test case for multiple platform!\n\n## Documentations\n\n- TODO\n\n## Installation\n\nAutoBot is available through [CocoaPods](https://cocoapods.org). To install\nit, simply add the following line to your Podfile:\n\n```ruby\npod 'AutoBot'\n```\n\n## Author\n\nmichaelhenry, me@iamkel.net\n\n## License\n\nAutoBot is available under the MIT license. See the LICENSE file for more info.\n\n\n## Other tools that might help you too.\n\n- [Localizr](https://github.com/michaelhenry/Localizr), Automates your **localization files** for `iOS` and `Android`\n- [Hijackr](https://github.com/michaelhenry/Hijackr), Mock your `URLRequest`\n\n## Limitations\n\n- TODO\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmichaelhenry%2Fautobot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmichaelhenry%2Fautobot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmichaelhenry%2Fautobot/lists"}