Skip to main content

Appiumfw - A minimal appium test framework that adapt POM

Project description

Appiumfw 🚀

A lightweight, POM structured test automation framework for Python + Appium, including:

📦 Project scaffolding with afw init

⟳ Test suite, test case, feature, and step generation using Jinja2 templating

▶️ Runner for executing feature (.feature), YAML suite, or .py test case files

🌐 REST API server (afw serve) to list and schedule test suites

🔗 API client module (appiumfw.api_client) for programmatic integration

⚙️ Typer-powered CLI for all commands

🛡️ Hooks/listener system, dotenv support, jinja templating

🔧 Features

afw setup — setup all mobile dependencies: node js, appium, uiAutomatior2

afw init — bootstrap a complete appiumfw project scaffold

afw create-testsuite — generate boilerplate YAML test suite & .py for its test suite hook

afw create-testsuite-collection — generate boilerplate YAML test suite collection

afw create-testcase — generate a .py test case stub

afw create-listener — generate a test listener

afw create-feature — generate a .feature file

afw implement-feature — autogenerate step definitions from your .feature

afw run — run one of .feature, .yml, or .py test scripts

afw serve [--port ] — expose a REST API to list, run, and schedule test suites

✅ Installation

pip install appiumfw

Or locally:

git clone https://github.com/badrusalam11/appiumfw.git cd appiumfw pip install -e .

🚀 Quick Start

  1. Setup mobile project afw setup

  2. Scaffold a new project

afw init myproject cd myproject

  1. Create testsuite/feature/case

afw create-testsuite login afw create-feature login afw implement-feature login

  1. Add test logic in testcases/, steps/, etc.

  2. Run tests

afw run features/login.feature # via behave afw run testsuites/login.yml # via runner

after that, choose the mobile device, or set it directly in deviceName at settings/appium.properties

🌐 API Testing Example

You can use the same ApiClient to test any public free REST API, for example JSONPlaceholder:

from appiumfw.api_client import ApiClient

initialize client for JSONPlaceholder

client = ApiClient( base_url="https://jsonplaceholder.typicode.com", default_headers={"Accept": "application/json"} )

GET a list of posts

response = client.get("/posts") assert response.status_code == 200 posts = response.json() assert isinstance(posts, list) print(f"Retrieved {len(posts)} posts")

GET a single post

response = client.get("/posts/1") assert response.status_code == 200 post = response.json() assert post.get("id") == 1 print(f"Post title: {post.get('title')}")

POST a new post (will return a mock id)

new_post = { "title": "foo", "body": "bar", "userId": 1 } response = client.post("/posts", json=new_post) assert response.status_code == 201 created = response.json() assert created.get("id") is not None print(f"Created post ID: {created.get('id')}")

🛠️ Configuration

Use a .env in your project root to customize:

APP_PORT=5006 SERVER_URL=http://localhost:5006

💡 Why use appiumfw?

🧠 Inspired by Katalon, but for Python developers

🌟 Supports feature files + step generation + scheduling

🚀 Design for both CLI use and API integration

🧹 Expandable via listeners/hooks, Config, MobileFactory, etc.

🤝 Contributing

PRs are welcome! Please ensure:

Code is well-documented and follows PEP8

Templates & CLI updated accordingly

README.md and tests updated

Use Black, Flake8, isort (recommended)

📜 License

MIT — see LICENSE for details.

📨 Contact

Built & maintained by Muhamad Badru Salam — QA Automation Engineer (SDET)

Github: badrusalam11

LinkedIn: Muhamad Badru Salam

Email: muhamadbadrusalam760@gmail.com

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

appiumfw-0.1.2.tar.gz (33.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

appiumfw-0.1.2-py3-none-any.whl (39.6 kB view details)

Uploaded Python 3

File details

Details for the file appiumfw-0.1.2.tar.gz.

File metadata

  • Download URL: appiumfw-0.1.2.tar.gz
  • Upload date:
  • Size: 33.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.1

File hashes

Hashes for appiumfw-0.1.2.tar.gz
Algorithm Hash digest
SHA256 af5c0f2b5c73b84a42a74916ba72129b8d239bd3ddc7f5c24ada1ad4b9c84c5f
MD5 ac441d90e365024aa30b1838becb231d
BLAKE2b-256 59daf44653522ea9aaf140f8d3b77d2507f2533651300b3c0c4c32790dcdf40f

See more details on using hashes here.

File details

Details for the file appiumfw-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: appiumfw-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 39.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.1

File hashes

Hashes for appiumfw-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 d7c80b7267f4f6202ec72d7afe56cc221a80b010b068b3effa42ba24c8c399c1
MD5 2f4d8e5db260485139bd0f684ef48b7c
BLAKE2b-256 60a57368c17f9cabe7ca87f47c37891b86f1b53d06c4063397957ca5abf5c632

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page