├── README.md ├── features ├── AndroidFeature.feature └── IOSFeature.feature ├── pavement.py ├── requirements.txt └── steps ├── AndroidStepDef.py ├── IosStepDef.py └── appConfig.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riadayal/appium-python-behave-multipleapps/HEAD/README.md -------------------------------------------------------------------------------- /features/AndroidFeature.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riadayal/appium-python-behave-multipleapps/HEAD/features/AndroidFeature.feature -------------------------------------------------------------------------------- /features/IOSFeature.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riadayal/appium-python-behave-multipleapps/HEAD/features/IOSFeature.feature -------------------------------------------------------------------------------- /pavement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riadayal/appium-python-behave-multipleapps/HEAD/pavement.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riadayal/appium-python-behave-multipleapps/HEAD/requirements.txt -------------------------------------------------------------------------------- /steps/AndroidStepDef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riadayal/appium-python-behave-multipleapps/HEAD/steps/AndroidStepDef.py -------------------------------------------------------------------------------- /steps/IosStepDef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riadayal/appium-python-behave-multipleapps/HEAD/steps/IosStepDef.py -------------------------------------------------------------------------------- /steps/appConfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riadayal/appium-python-behave-multipleapps/HEAD/steps/appConfig.py --------------------------------------------------------------------------------