Skip to main content

A python bridge to the detox greybox testing library

Project description

Detox Python Bridge

https://secure.travis-ci.org/kpn-digital/py-detox-bridge.svg?branch=master https://img.shields.io/codecov/c/github/kpn-digital/py-detox-bridge/master.svg https://img.shields.io/pypi/v/detox-bridge.svg https://readthedocs.org/projects/detox-bridge/badge/?version=latest

A bridge to enable python code to use the detox grey-box testing API ( https://github.com/wix/detox )

Requirements

NVM

The package requires nvm to be installed. Either the NVM environment variable needs to contain the full path of the nvm.sh script, or the NVM_DIR environment variable needs to point at the root directory of nvm containing the nvm.sh script.

NODE

The code emitted by this bridge requires node 7.6.0 or higher.

Python

3.5 or 3.6 is required to use the package.

Detox

Follow the getting started guide from detox ( https://github.com/wix/detox/blob/master/docs/Introduction.GettingStarted.md )

Usage

from detox_bridge import await, by, detox, device, element, expect, node_with_detox

app_path = "detox/examples/demo-react-native"

# Start Node server in app_path root folder that contains node_modules

with node_with_detox(app_path=app_path, default_timeout=10) as appserver:

    # Detox Config (we could also load this from package.json)

    ios_sim_release = {
        "binaryPath": "ios/build/Build/Products/Release-iphonesimulator/example.app",
        "type": "ios.simulator",
        "name": "iPhone 7 Plus"
    }

    configurations_obj = {"configurations": {"ios.sim.release": ios_sim_release}}

    # Longer timeout since the app may be installed

    appserver(await(detox.init(configurations_obj)), timeout=360)

    # Reload react native

    appserver(await(device.reloadReactNative()))

    # Expectation

    appserver(await(expect(element(by.id('welcome'))).toBeVisible()))

    # Cleanup

    appserver(await(detox.cleanup()))

Development

Requirements

Both python 3.5 and python 3.6 are required to run the suite suite.

Checkout

After checkout run:

git submodule update --init --recursive

Running tests

To run the test suite:

make test

Once the venv is there you can also run some tests via tox:

venv/bin/tox -e py35 -- -k <regex>

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

detox-bridge-1.0.2.tar.gz (14.3 kB view hashes)

Uploaded Source

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