
Security News
npm ‘is’ Package Hijacked in Expanding Supply Chain Attack
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.
.. _readthedocs: https://e2e-mobile.readthedocs.io .. _contributing guidelines: https://e2e-mobile.readthedocs.io/en/latest/contributing.html .. _FAQ: https://e2e-mobile.readthedocs.io/en/latest/faq.html#python-setup
.. image:: https://img.shields.io/pypi/v/e2e-mobile.svg :target: https://pypi.org/project/e2e-mobile
.. image:: https://img.shields.io/pypi/l/e2e-mobile.svg :target: https://github.com/trinhngocthuyen/e2e-mobile/blob/main/LICENSE
e2e-mobile
is a Python package providing convenient setup for end-to-end testing in mobile apps. This package is the combined magic of Appium and Pytest. It helps us:
.. image:: _static/recording.gif
.. code-block:: python
from e2e_ext.core.tester import Tester
def test_tutorial(tester: Tester):
tester.ui.home.skip_tutorial()
tester.relaunch_app()
tester.ui.home.must_not_see_tutorial()
def test_settings(tester: Tester):
tester.ui.home.skip_tutorial()
tester.ui.home.go_to_settings()
tester.ui.settings.swipe('up')
tester.ui.settings.element('About the app').must_exist()
tester.ui.settings.swipe('down')
tester.ui.settings.close()
Get started with e2e-mobile now! <https://e2e-mobile.readthedocs.io/en/latest/getting_started/index.html>
_
e2e-mobile
is available on PyPI (Python Package Index) <https://pypi.org/project/e2e-mobile>
_. You can install with with pip
:
.. code-block:: console
$ pip install --upgrade e2e-mobile
First time hearing pip
? Check this FAQ
_.
Kindly check out the related docs on readthedocs_:
Getting Started <https://e2e-mobile.readthedocs.io/en/latest/getting_started/index.html>
_Kindly check out the related docs on readthedocs_:
API Reference <https://e2e-mobile.readthedocs.io/en/latest/api/reference.html>
_Refer to the contributing guidelines
_ for how to contribute to this project.
FAQs
E2E Testing package for mobile apps
We found that e2e-mobile demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.
Security News
A critical flaw in the popular npm form-data package could allow HTTP parameter pollution, affecting millions of projects until patched versions are adopted.
Security News
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.