{"id":20750032,"url":"https://github.com/fatimazza/robotappiumtest","last_synced_at":"2026-04-24T14:32:12.651Z","repository":{"id":163316126,"uuid":"636553639","full_name":"Fatimazza/RobotAppiumTest","owner":"Fatimazza","description":"Mobile Automation Testing using Robot Framework with Appium Library \u0026 Python","archived":false,"fork":false,"pushed_at":"2023-05-24T08:13:25.000Z","size":9353,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-01-18T03:27:44.346Z","etag":null,"topics":["android-automation","appium-android","appium-library","mobile-automation","python","robot-framework"],"latest_commit_sha":null,"homepage":"","language":"HTML","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/Fatimazza.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":"2023-05-05T05:41:55.000Z","updated_at":"2023-06-01T10:00:32.000Z","dependencies_parsed_at":null,"dependency_job_id":"dafd6753-4b11-4edc-aeb1-f5ef145c1c6e","html_url":"https://github.com/Fatimazza/RobotAppiumTest","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Fatimazza%2FRobotAppiumTest","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Fatimazza%2FRobotAppiumTest/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Fatimazza%2FRobotAppiumTest/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Fatimazza%2FRobotAppiumTest/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Fatimazza","download_url":"https://codeload.github.com/Fatimazza/RobotAppiumTest/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243048214,"owners_count":20227593,"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","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-automation","appium-android","appium-library","mobile-automation","python","robot-framework"],"created_at":"2024-11-17T08:25:34.002Z","updated_at":"2026-04-24T14:32:12.596Z","avatar_url":"https://github.com/Fatimazza.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003eRobot Appium Test\u003c/h1\u003e\u003c/br\u003e\n\n\u003cp align=\"center\"\u003e\n:sparkles: Mobile Automation Testing using Robot Framework with Appium Library \u0026amp; Python :sparkles:\n\u003c/p\u003e\n\n## Preparation\n\nWhat will be used on this project\n\n\n| Item           | Source                                                         |\n| -------------- | ------------------------------------------------------------ |\n| Editor         | VS Code (https://code.visualstudio.com/download) |\n| Package Manager| PIP (https://pip.pypa.io/en/stable/getting-started/) |\n| UI Test Tools  | Appium (http://appium.io/docs/en/2.0/quickstart/install) | \n|                | Robot Framework with Python (https://robotframework.org/#getting-started) |\n|                | Appium Library (https://github.com/serhatbolsu/robotframework-appiumlibrary) | \n|                | PyYaml (https://pypi.org/project/PyYAML/) |\n| Design Pattern | POM or Page Object Model |\n| Test Reporter  | Robot Framework with Python (https://robotframework.org/#getting-started)|\n| Device         | Android 5 and above  |\n\n## Pre-Requisite Installation\n\nInstall VS Code Editor, Python, and PIP\n\nTo check whether you already installed Python \u0026 PIP\n\n```Bash\npython --version\n```\n```Bash\npython -m pip --version \n```\n\n## Testing Tools Installation\n\nInstall Appium v 2.0\n\n```Bash\nnpm i -g appium@next\n```\n\nInstall Robot Framework\n\n```Bash\npython -m pip install robotframework\n```\n\nInstall Appium Library\n\n```Bash\npython3 -m pip install --upgrade robotframework-appiumlibrary\n```\n\nInstall PyYAML \n\n```Bash\npython -m pip install pyyaml\n```\n\n## Setting up Project\n\n### Clone\n\n**👉 [Clone this Repository](https://github.com/Fatimazza/RobotAppiumTest/)** through Terminal or Command Prompt\n\n### Open the Project on Editor\n\nOpen this Automation Project using VS Code Editor\n\n### Run Application \n\nRun the \"My Cafe App\" APK on Android Emulator or Real device connected with Debugging mode\n\nThe APK file available on `RobotAppiumTest/apk/MyCafeApp.apk`\n\n\u003cimg src=\"https://github.com/fatimazza/RobotAppiumTest/blob/main/apk/ScreenShoot_MyCafeApp.jpg\" alt= “MyCafeApp” width=\"400\" height=\"756\"\u003e\n\n### Run the Automation Project \n\nRun Appium on Terminal or Command Prompt\n\n```Bash\nappium --base-path /wd/hub\n```\n\nOn **Another** Terminal or Command Prompt\n\nChange to Project directory \n\n```Bash\ncd RobotAppiumTest\n```\n\nRun Specific Test Execution on Terminal\n\n```Bash\nrobot --outputdir output/ step/test_home.robot\n```\n\nRun All Test Execution on Terminal\n\n```Bash\nrobot --outputdir output/ .\n```\n\n\u003e Note: Please wait until all test execution finished\n\n### Test Execution HTML Report\n\n:white_check_mark: Report available on \u003cb\u003e RobotAppiumTest/output/report.html \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffatimazza%2Frobotappiumtest","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffatimazza%2Frobotappiumtest","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffatimazza%2Frobotappiumtest/lists"}