├── .gitignore ├── LICENSE ├── README.md ├── package_tests.sh ├── start-appium-android.sh └── tests ├── __init__.py ├── pages ├── __init__.py ├── alerts_page.py ├── base_pages │ ├── __init__.py │ ├── base_page.py │ └── tab_view_page.py ├── login_page.py ├── native │ ├── __init__.py │ ├── image_gallery_page.py │ └── video_player_page.py ├── navigation_page.py ├── nested_views_page.py └── web_page.py └── tests ├── __init__.py ├── alerts_test.py ├── base_tests ├── __init__.py ├── base_tab_test.py ├── base_test.py └── native_test.py ├── login_test.py ├── native ├── __init__.py ├── image_gallery_test.py └── video_player_test.py ├── nested_views_test.py └── web_test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-device-farm-appium-python-tests-for-android-sample-app/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-device-farm-appium-python-tests-for-android-sample-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-device-farm-appium-python-tests-for-android-sample-app/HEAD/README.md -------------------------------------------------------------------------------- /package_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-device-farm-appium-python-tests-for-android-sample-app/HEAD/package_tests.sh -------------------------------------------------------------------------------- /start-appium-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-device-farm-appium-python-tests-for-android-sample-app/HEAD/start-appium-android.sh -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/pages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-device-farm-appium-python-tests-for-android-sample-app/HEAD/tests/pages/__init__.py -------------------------------------------------------------------------------- /tests/pages/alerts_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-device-farm-appium-python-tests-for-android-sample-app/HEAD/tests/pages/alerts_page.py -------------------------------------------------------------------------------- /tests/pages/base_pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/pages/base_pages/base_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-device-farm-appium-python-tests-for-android-sample-app/HEAD/tests/pages/base_pages/base_page.py -------------------------------------------------------------------------------- /tests/pages/base_pages/tab_view_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-device-farm-appium-python-tests-for-android-sample-app/HEAD/tests/pages/base_pages/tab_view_page.py -------------------------------------------------------------------------------- /tests/pages/login_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-device-farm-appium-python-tests-for-android-sample-app/HEAD/tests/pages/login_page.py -------------------------------------------------------------------------------- /tests/pages/native/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/pages/native/image_gallery_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-device-farm-appium-python-tests-for-android-sample-app/HEAD/tests/pages/native/image_gallery_page.py -------------------------------------------------------------------------------- /tests/pages/native/video_player_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-device-farm-appium-python-tests-for-android-sample-app/HEAD/tests/pages/native/video_player_page.py -------------------------------------------------------------------------------- /tests/pages/navigation_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-device-farm-appium-python-tests-for-android-sample-app/HEAD/tests/pages/navigation_page.py -------------------------------------------------------------------------------- /tests/pages/nested_views_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-device-farm-appium-python-tests-for-android-sample-app/HEAD/tests/pages/nested_views_page.py -------------------------------------------------------------------------------- /tests/pages/web_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-device-farm-appium-python-tests-for-android-sample-app/HEAD/tests/pages/web_page.py -------------------------------------------------------------------------------- /tests/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/alerts_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-device-farm-appium-python-tests-for-android-sample-app/HEAD/tests/tests/alerts_test.py -------------------------------------------------------------------------------- /tests/tests/base_tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-device-farm-appium-python-tests-for-android-sample-app/HEAD/tests/tests/base_tests/__init__.py -------------------------------------------------------------------------------- /tests/tests/base_tests/base_tab_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-device-farm-appium-python-tests-for-android-sample-app/HEAD/tests/tests/base_tests/base_tab_test.py -------------------------------------------------------------------------------- /tests/tests/base_tests/base_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-device-farm-appium-python-tests-for-android-sample-app/HEAD/tests/tests/base_tests/base_test.py -------------------------------------------------------------------------------- /tests/tests/base_tests/native_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-device-farm-appium-python-tests-for-android-sample-app/HEAD/tests/tests/base_tests/native_test.py -------------------------------------------------------------------------------- /tests/tests/login_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-device-farm-appium-python-tests-for-android-sample-app/HEAD/tests/tests/login_test.py -------------------------------------------------------------------------------- /tests/tests/native/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/native/image_gallery_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-device-farm-appium-python-tests-for-android-sample-app/HEAD/tests/tests/native/image_gallery_test.py -------------------------------------------------------------------------------- /tests/tests/native/video_player_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-device-farm-appium-python-tests-for-android-sample-app/HEAD/tests/tests/native/video_player_test.py -------------------------------------------------------------------------------- /tests/tests/nested_views_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-device-farm-appium-python-tests-for-android-sample-app/HEAD/tests/tests/nested_views_test.py -------------------------------------------------------------------------------- /tests/tests/web_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-device-farm-appium-python-tests-for-android-sample-app/HEAD/tests/tests/web_test.py --------------------------------------------------------------------------------