├── .gitignore ├── README.md ├── configs.py ├── features ├── __init__.py ├── environment.py ├── steps │ └── iyourcar.py ├── test_detail.feature ├── test_index.feature └── utils.py ├── img ├── UIA1.jpg ├── UIA2.jpg ├── inspect.png ├── jenkins.png ├── qrcode.jpg ├── result.png └── x5debug.png ├── requirements.txt ├── tests ├── conftest.py ├── test_article.py └── test_calculator.py └── wxapp.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richshaw2015/wxapp-appium/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richshaw2015/wxapp-appium/HEAD/README.md -------------------------------------------------------------------------------- /configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richshaw2015/wxapp-appium/HEAD/configs.py -------------------------------------------------------------------------------- /features/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richshaw2015/wxapp-appium/HEAD/features/environment.py -------------------------------------------------------------------------------- /features/steps/iyourcar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richshaw2015/wxapp-appium/HEAD/features/steps/iyourcar.py -------------------------------------------------------------------------------- /features/test_detail.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richshaw2015/wxapp-appium/HEAD/features/test_detail.feature -------------------------------------------------------------------------------- /features/test_index.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richshaw2015/wxapp-appium/HEAD/features/test_index.feature -------------------------------------------------------------------------------- /features/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richshaw2015/wxapp-appium/HEAD/features/utils.py -------------------------------------------------------------------------------- /img/UIA1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richshaw2015/wxapp-appium/HEAD/img/UIA1.jpg -------------------------------------------------------------------------------- /img/UIA2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richshaw2015/wxapp-appium/HEAD/img/UIA2.jpg -------------------------------------------------------------------------------- /img/inspect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richshaw2015/wxapp-appium/HEAD/img/inspect.png -------------------------------------------------------------------------------- /img/jenkins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richshaw2015/wxapp-appium/HEAD/img/jenkins.png -------------------------------------------------------------------------------- /img/qrcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richshaw2015/wxapp-appium/HEAD/img/qrcode.jpg -------------------------------------------------------------------------------- /img/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richshaw2015/wxapp-appium/HEAD/img/result.png -------------------------------------------------------------------------------- /img/x5debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richshaw2015/wxapp-appium/HEAD/img/x5debug.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Appium-Python-Client 2 | pytest 3 | selenium 4 | behave -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richshaw2015/wxapp-appium/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_article.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richshaw2015/wxapp-appium/HEAD/tests/test_article.py -------------------------------------------------------------------------------- /tests/test_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richshaw2015/wxapp-appium/HEAD/tests/test_calculator.py -------------------------------------------------------------------------------- /wxapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richshaw2015/wxapp-appium/HEAD/wxapp.py --------------------------------------------------------------------------------