{"id":18459559,"url":"https://github.com/markuusche/mobile.playground","last_synced_at":"2026-02-25T18:05:11.404Z","repository":{"id":209242767,"uuid":"723547793","full_name":"markuusche/mobile.playground","owner":"markuusche","description":"💰 casino game [ mobile mode emulation ] automation","archived":false,"fork":false,"pushed_at":"2025-02-28T05:31:26.000Z","size":259,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-23T02:54:36.190Z","etag":null,"topics":["automation","casino-games","pytest","testing"],"latest_commit_sha":null,"homepage":"","language":"Python","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/markuusche.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-11-26T02:22:14.000Z","updated_at":"2025-10-08T16:03:09.000Z","dependencies_parsed_at":"2024-05-16T00:06:59.685Z","dependency_job_id":"442d983f-43f5-446b-b5b0-ae3524516b55","html_url":"https://github.com/markuusche/mobile.playground","commit_stats":null,"previous_names":["gloofo/red-x-cross","markuusche/red-x-cross","markuusche/mobile.playground"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/markuusche/mobile.playground","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/markuusche%2Fmobile.playground","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/markuusche%2Fmobile.playground/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/markuusche%2Fmobile.playground/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/markuusche%2Fmobile.playground/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/markuusche","download_url":"https://codeload.github.com/markuusche/mobile.playground/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/markuusche%2Fmobile.playground/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29833758,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-25T17:57:15.019Z","status":"ssl_error","status_checked_at":"2026-02-25T17:56:11.472Z","response_time":61,"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":["automation","casino-games","pytest","testing"],"created_at":"2024-11-06T08:23:38.642Z","updated_at":"2026-02-25T18:05:11.374Z","avatar_url":"https://github.com/markuusche.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003e [!NOTE] \n\u003e _It is expected that you cannot run this project without the api base url and its endpoints._ \u003c/br\u003e\n\u003e _The purpose of this project is to demonstrate that I've developed something for personal use and future reference._ \u003c/br\u003e\n\u003e _If you have any questions, feel free to contact me through one of my socials on my github profile._\n\n\n![](https://cdn-icons-png.freepik.com/128/9414/9414933.png)\n\nmobile.playground (casino)\n======\nQA Automation Test\n\nProject Dependencies\n---------------------\n\n- `python`\n- `selenium`\n- `pytest`\n- `pyyaml`\n- `requests`\n- `faker`\n- `gspread`\n- `oauth2client`\n- `google-api-python-client`\n- `opencv-python`\n- `pytesseract`\n- `pyperclip`\n\nCoverage\n---------\n\n   * [Mobile]\n\nPre-requisites\n--------------\n\n1. Python 3 (Make sure python is added to your system PATH)\n2. Python Extension (VSCode)\n3. pip\n4. virtualenv\n6. [tesseract](https://github.com/UB-Mannheim/tesseract/wiki)\n7. creds.json\n------------------------------------------------\nSetting up first run on your local machine\n------------------------------------------\n\n1. Clone this project on your local machine\n\n   ```\n   https://github.com/markuusche/mobile.playground\n   ```\n\n3. Open a terminal inside your local clone of the repository.\n\n4. Using python's virtualenv, create a virtual environment inside the project. \u003cbr\u003e\n   Install:\n   ```\n   pip install virtualenv\n   ```\n   Create a virtual environment:\n   ```\n   virtualenv venv\n   ```\n\n   where venv is the name of the virtual environment you are creating.\n   It is also recommended to use __venv__ as the name of your virtual environment\n   cause this is the recognized file exception on our ``.gitignore``\n\n6. Activate the virtualenv you just created.\n   \n   * Windows CMD\n      ```bash\n      venv\\Scripts\\activate\n      ```\n   * Windows Git Bash\n      ```bash\n      source venv/scripts/activate\n      ```\n   * Windows Powershell\n      ```bash\n      venv\\Scripts\\activate.ps1\n      ```\n   * MacOS/Linux\n      ```bash\n     source venv/bin/activate\n      ```\n\n7. Install the project dependencies.\n    ```bash\n     pip install -r requirements.txt\n    ```\n8. Create the needed folder for the run:\n   ```bash\n   mkdir -p sreenshots/decoded\n   ```\n   ```bash\n   mkdir logs\n   ```\n\nThats it! You have setup your local environment to run test for this project.\n\nRun the script in visual mode (_Recommended_)\n\u003e [!IMPORTANT]\n\u003e this command already includes verbosity, stdout \u0026 stderr and quiet flags. See [pytest.ini](https://github.com/markuusche/mobile.playground/blob/main/pytest.ini)\n```bash\npytest\n```\n\nRun the script in headless mode\n```bash\npytest --headless\n```\n\nRun the script with a gsreport\n\u003e [!NOTE]\n\u003e all test status will be recorded in the google sheet.\n```bash\npytest --gsreport\n```\n\u003c/br\u003e\n\n\u003e [!CAUTION]\n\u003e Be aware that the test script might be flaky sometimes.\n\n\u003e [!IMPORTANT]\n\u003e If the test case failed on the first run. Re-run the test case base on what the test case that failed. \u003cbr\u003e\n\u003e For ex. the baccarat game failed, you can run this specific test case with:\n\u003e `` pytest -k test_baccarat``.\u003cbr\u003e\n\u003e If one or several test case failed, verify or replicate if the test case really failed.\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarkuusche%2Fmobile.playground","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmarkuusche%2Fmobile.playground","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarkuusche%2Fmobile.playground/lists"}