Skip to main content

Pyppium is a wrapper of Appium-Python-Client for cross mobile testing.

Project description

Pyppium

made-with-python codecov GitHub license GitHub Pages Deploy Code style: black

Pyppium is an Appium-Python-Client wrapper for cross mobile testing. It helps you to save your time by reducing complexity, increasing efficiency and also avoiding these boring and repetitive work problems. Assists you to focus on what really matters, like your business rules, and provides an environment to start creating your application's screens and your test scenarios as fast as possible.

Installation


$ pip install pyppium

Basic Usage

The following code will give you the necessary to create a simple flow that searches for components on your application screen and perform an action. Others components are supported based on the Appium usage, so feel free to explore and setup your own custom actions.

from pyppium.fetcher import fetch, iOS, Android


class ScreenOne:
    _button_sign_in = fetch(iOS("id", "buttonSignIn"), Android("id", "button"))
    _input_username = fetch(iOS("id", "inputUserName"), Android("id", "username"))
    _input_password = fetch(iOS("id", "InputPassword"), Android("id", "pass"))

    def login(self, username, password):
        self._input_username.send_keys(username)
        self._input_password.send_keys(password)
        self._button_sign_in.click()

    

After that, you can use the class above (ScreenOne) to create an specific scenario. Note that you need to start Pyppium Driver.

from pyppium.driver import PyppiumDriver
from tests.e2e.screens.screen import LoginScreen, WelcomeScreen


def test_android_basic_behaviours():
    username = "Lully"
    password = "123456789"

    caps_android ={
            "platformName": "Android",
            "automationName": "uiautomator2",
            "deviceName": "Android Emulator",
            "appPackage": "com.example.dummy",
            "appActivity": "MainActivity",
            "newCommandTimeout": 0,
    }


    PyppiumDriver(caps_android)

    LoginScreen().login(username, password)

    assert username in WelcomeScreen().label_welcome_message()

    PyppiumDriver.quit()

Documentation

Tests

Run all unity tests.


$ tox

Special Thanks

Pyppium count on many packages for trying to deliver a good framework. And of course, these packages are amazing!

License

The MIT License (MIT) Copyright (c) 2020 Leonardo Menezes

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


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

pyppium-0.5.1.tar.gz (9.2 kB view details)

Uploaded Source

Built Distribution

pyppium-0.5.1-py3-none-any.whl (9.5 kB view details)

Uploaded Python 3

File details

Details for the file pyppium-0.5.1.tar.gz.

File metadata

  • Download URL: pyppium-0.5.1.tar.gz
  • Upload date:
  • Size: 9.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.0.9 CPython/3.7.9 Linux/5.3.0-1035-azure

File hashes

Hashes for pyppium-0.5.1.tar.gz
Algorithm Hash digest
SHA256 8a4731392cc474d8bf4318697d7688a3dd9e43bf8a1121ec1d5ae6b3fb97fda0
MD5 8402e5fc7177a4b30e6c8844756191f0
BLAKE2b-256 f1e207c9c27f7ac3f1261b5d68083178b2864005a747e0279721abe4444db593

See more details on using hashes here.

File details

Details for the file pyppium-0.5.1-py3-none-any.whl.

File metadata

  • Download URL: pyppium-0.5.1-py3-none-any.whl
  • Upload date:
  • Size: 9.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.0.9 CPython/3.7.9 Linux/5.3.0-1035-azure

File hashes

Hashes for pyppium-0.5.1-py3-none-any.whl
Algorithm Hash digest
SHA256 83bdac6c1dcaecc6f24580340637c8c8907cd839ead1c074aa1ae4f75d4663a2
MD5 3e9a8e00951d0b554def4780b684abc4
BLAKE2b-256 de27f261fd74bf590fa146f161dd54945bbe6f617a55a4388f42239b902eecfa

See more details on using hashes here.

Supported by

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