├── .gitignore ├── LICENSE ├── README.rst ├── demoapp ├── ApiDemos-debug.apk └── TestApp.app.zip ├── docs ├── appium-screenshot-1.png ├── log.html └── report.html ├── requirements.txt ├── resources └── resource.robot └── tests ├── android_basic_interactions.test.robot ├── android_create_session.test.robot ├── android_create_web_session.test.robot ├── android_selectors.test.robot ├── android_simple_example.test.robot ├── ios_basic_interactions.test.robot ├── ios_create_session.test.robot ├── ios_create_web_session.test.robot └── ios_selectors.test.robot /.gitignore: -------------------------------------------------------------------------------- 1 | venv/ 2 | .idea -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serhatbolsu/robotframework-appium-sample/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serhatbolsu/robotframework-appium-sample/HEAD/README.rst -------------------------------------------------------------------------------- /demoapp/ApiDemos-debug.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serhatbolsu/robotframework-appium-sample/HEAD/demoapp/ApiDemos-debug.apk -------------------------------------------------------------------------------- /demoapp/TestApp.app.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serhatbolsu/robotframework-appium-sample/HEAD/demoapp/TestApp.app.zip -------------------------------------------------------------------------------- /docs/appium-screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serhatbolsu/robotframework-appium-sample/HEAD/docs/appium-screenshot-1.png -------------------------------------------------------------------------------- /docs/log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serhatbolsu/robotframework-appium-sample/HEAD/docs/log.html -------------------------------------------------------------------------------- /docs/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serhatbolsu/robotframework-appium-sample/HEAD/docs/report.html -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serhatbolsu/robotframework-appium-sample/HEAD/requirements.txt -------------------------------------------------------------------------------- /resources/resource.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serhatbolsu/robotframework-appium-sample/HEAD/resources/resource.robot -------------------------------------------------------------------------------- /tests/android_basic_interactions.test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serhatbolsu/robotframework-appium-sample/HEAD/tests/android_basic_interactions.test.robot -------------------------------------------------------------------------------- /tests/android_create_session.test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serhatbolsu/robotframework-appium-sample/HEAD/tests/android_create_session.test.robot -------------------------------------------------------------------------------- /tests/android_create_web_session.test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serhatbolsu/robotframework-appium-sample/HEAD/tests/android_create_web_session.test.robot -------------------------------------------------------------------------------- /tests/android_selectors.test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serhatbolsu/robotframework-appium-sample/HEAD/tests/android_selectors.test.robot -------------------------------------------------------------------------------- /tests/android_simple_example.test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serhatbolsu/robotframework-appium-sample/HEAD/tests/android_simple_example.test.robot -------------------------------------------------------------------------------- /tests/ios_basic_interactions.test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serhatbolsu/robotframework-appium-sample/HEAD/tests/ios_basic_interactions.test.robot -------------------------------------------------------------------------------- /tests/ios_create_session.test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serhatbolsu/robotframework-appium-sample/HEAD/tests/ios_create_session.test.robot -------------------------------------------------------------------------------- /tests/ios_create_web_session.test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serhatbolsu/robotframework-appium-sample/HEAD/tests/ios_create_web_session.test.robot -------------------------------------------------------------------------------- /tests/ios_selectors.test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serhatbolsu/robotframework-appium-sample/HEAD/tests/ios_selectors.test.robot --------------------------------------------------------------------------------