{"id":24013219,"url":"https://github.com/cihat-kose/akakce-appium-robotframework","last_synced_at":"2025-07-26T18:06:45.005Z","repository":{"id":180762553,"uuid":"665241425","full_name":"cihat-kose/akakce-appium-robotframework","owner":"cihat-kose","description":"Automated mobile testing framework for the Akakce app using Appium and Robot Framework.","archived":false,"fork":false,"pushed_at":"2025-01-01T12:20:31.000Z","size":108,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-01T13:22:01.057Z","etag":null,"topics":["appium","browserstack-automate","mobile-testing","phyton","robotframework","test-framework"],"latest_commit_sha":null,"homepage":"https://www.akakce.com/","language":"RobotFramework","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/cihat-kose.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":"2023-07-11T18:58:55.000Z","updated_at":"2025-01-01T12:20:34.000Z","dependencies_parsed_at":"2025-01-01T13:22:04.078Z","dependency_job_id":"2ae83833-3a37-4851-a816-1c6e627d82d6","html_url":"https://github.com/cihat-kose/akakce-appium-robotframework","commit_stats":null,"previous_names":["chatgthb/appiumprojectakakce","cihat-kose/akakceproject_appium_robotframework","cihat-kose/akakce-appium-robotframework"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cihat-kose%2Fakakce-appium-robotframework","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cihat-kose%2Fakakce-appium-robotframework/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cihat-kose%2Fakakce-appium-robotframework/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cihat-kose%2Fakakce-appium-robotframework/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cihat-kose","download_url":"https://codeload.github.com/cihat-kose/akakce-appium-robotframework/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240710060,"owners_count":19845039,"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":["appium","browserstack-automate","mobile-testing","phyton","robotframework","test-framework"],"created_at":"2025-01-08T06:51:43.971Z","updated_at":"2025-02-25T16:48:55.350Z","avatar_url":"https://github.com/cihat-kose.png","language":"RobotFramework","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# Akakce Appium RobotFramework\n\n![Appium](https://img.shields.io/badge/Appium-16B5E5?style=for-the-badge\u0026logo=appium\u0026logoColor=white)\n![Robot Framework](https://img.shields.io/badge/Robot_Framework-FF5733?style=for-the-badge\u0026logo=robot-framework\u0026logoColor=white)\n![Python](https://img.shields.io/badge/Python-3776AB?style=for-the-badge\u0026logo=python\u0026logoColor=white)\n![GitHub last commit](https://img.shields.io/github/last-commit/cihat-kose/akakce-appium-robotframework?style=for-the-badge\u0026cacheSeconds=60)\n\n## 📜 Introduction\nThis project is an automated testing framework for the Akakce mobile application, developed using **Appium** and **Robot Framework**. The framework allows automated user actions such as registration, login, and product search on the Akakce platform, supporting both local and remote (BrowserStack) environments.\n\n## 📂 Folder Structure\n- **Data**: Contains data files like `user_details.yaml` with predefined user credentials.\n- **Libraries**: Custom Python libraries, such as `StringGenerator.py`, for generating random user data.\n- **Resources**: Robot Framework resource files (`.robot`) containing keywords for different pages in the application.\n- **Tests**: Contains test case files (`Accounts.robot` and `Search.robot`) to validate functionalities like user registration, login, and product search.\n\n## 🚀 Features\n- **Automated Registration \u0026 Login**: Supports creating new user accounts and logging in with predefined credentials.\n- **Product Search and Follow**: Searches for a product and follows it as a user action.\n- **BrowserStack Integration**: Enables testing on cloud devices using BrowserStack.\n- **Random Data Generation**: Uses the `faker` library to generate random user data.\n\n## 📦 Dependencies\n- **Appium**: For automating mobile interactions.\n- **Robot Framework**: As the main test framework.\n- **Faker**: For generating random user data.\n- **BrowserStack**: For remote testing on cloud devices.\n\n## 📥 Installation\n1. **Clone the repository**:\n   ```bash\n   git clone https://github.com/cihat-kose/akakce-appium-robotframework.git\n   ```\n2. **Install dependencies**:\n   - Appium: Install Appium server.\n   - Python packages:\n     ```bash\n     pip install robotframework appium-python-client Faker\n     ```\n3. **Set up Appium**:\n   - Ensure the Appium server is running on the default port (4723) for local testing.\n\n## 🔧 Configuration\n- **User Data**: Modify `Data/user_details.yaml` to add or update user credentials.\n- **Execution Environment**: Update `common.robot` with `local` or `browserstack` as the `execution_env` variable.\n  - **Local**: Runs tests on an Android emulator or connected device.\n  - **BrowserStack**: Runs tests on BrowserStack using the provided credentials.\n\n## 📚 Test Execution\n1. **Run Registration and Login Tests**:\n   ```bash\n   robot Tests/Accounts.robot\n   ```\n2. **Run Product Search Tests**:\n   ```bash\n   robot Tests/Search.robot\n   ```\n\n## 🔍 Key Components\n\n### 1. **Data Files**\n   - `user_details.yaml`: Contains predefined user data such as name, email, and password.\n\n### 2. **Custom Libraries**\n   - `StringGenerator.py`: Generates random names, surnames, emails, and passwords using the `faker` library.\n\n### 3. **Test Files**\n   - **Accounts.robot**: Includes test cases for user registration and login.\n   - **Search.robot**: Includes test cases for searching a product and following it.\n\n## 🤝 Contributing\n1. Fork the repository.\n2. Create a new branch for your feature (`git checkout -b feature-branch`).\n3. Commit your changes (`git commit -m 'Add new feature'`).\n4. Push to the branch (`git push origin feature-branch`).\n5. Open a Pull Request.\n\n## 📜 License\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for more details.\n\n## 📫 Contact\nFor questions or issues, please open an issue in this repository or reach out via [LinkedIn](https://www.linkedin.com/in/cihat-kose/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcihat-kose%2Fakakce-appium-robotframework","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcihat-kose%2Fakakce-appium-robotframework","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcihat-kose%2Fakakce-appium-robotframework/lists"}