├── .gitignore ├── README.md ├── SUMMARY.md ├── appium_basic ├── appium_android_env.md ├── appium_android_env │ ├── linux.md │ ├── mac.md │ └── windows.md ├── appium_basic.md ├── appium_basic_overview.md ├── appium_demo.md ├── appium_install.md ├── appium_install │ ├── linux.md │ ├── mac.md │ └── windows.md └── appium_overview │ ├── Appium Architecture.png │ ├── Screen Shot 2015-07-21 at 12.48.07 am.png │ ├── appium_architecture.md │ └── appium_milestone.md ├── appium_client ├── elements_locate.md ├── elements_operation.md ├── intro.md └── others.md ├── auto_intro ├── auto_intro.md ├── auto_intro_history.md ├── auto_intro_philosophy.md └── auto_intro_pursue.md ├── book.json ├── cover.jpg └── cover_small.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testerhome/appium-chinese-tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testerhome/appium-chinese-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testerhome/appium-chinese-tutorial/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /appium_basic/appium_android_env.md: -------------------------------------------------------------------------------- 1 | # Android 环境搭建 2 | -------------------------------------------------------------------------------- /appium_basic/appium_android_env/linux.md: -------------------------------------------------------------------------------- 1 | # Linux 平台 2 | -------------------------------------------------------------------------------- /appium_basic/appium_android_env/mac.md: -------------------------------------------------------------------------------- 1 | # Mac 平台 2 | -------------------------------------------------------------------------------- /appium_basic/appium_android_env/windows.md: -------------------------------------------------------------------------------- 1 | # Windows 平台 2 | -------------------------------------------------------------------------------- /appium_basic/appium_basic.md: -------------------------------------------------------------------------------- 1 | # Appium 基础篇 2 | -------------------------------------------------------------------------------- /appium_basic/appium_basic_overview.md: -------------------------------------------------------------------------------- 1 | # Appium 的概览 2 | -------------------------------------------------------------------------------- /appium_basic/appium_demo.md: -------------------------------------------------------------------------------- 1 | # Appium Demo 2 | -------------------------------------------------------------------------------- /appium_basic/appium_install.md: -------------------------------------------------------------------------------- 1 | # Appium 的安装 2 | -------------------------------------------------------------------------------- /appium_basic/appium_install/linux.md: -------------------------------------------------------------------------------- 1 | # Linux 平台 2 | -------------------------------------------------------------------------------- /appium_basic/appium_install/mac.md: -------------------------------------------------------------------------------- 1 | # Mac 平台 2 | -------------------------------------------------------------------------------- /appium_basic/appium_install/windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testerhome/appium-chinese-tutorial/HEAD/appium_basic/appium_install/windows.md -------------------------------------------------------------------------------- /appium_basic/appium_overview/Appium Architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testerhome/appium-chinese-tutorial/HEAD/appium_basic/appium_overview/Appium Architecture.png -------------------------------------------------------------------------------- /appium_basic/appium_overview/Screen Shot 2015-07-21 at 12.48.07 am.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testerhome/appium-chinese-tutorial/HEAD/appium_basic/appium_overview/Screen Shot 2015-07-21 at 12.48.07 am.png -------------------------------------------------------------------------------- /appium_basic/appium_overview/appium_architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testerhome/appium-chinese-tutorial/HEAD/appium_basic/appium_overview/appium_architecture.md -------------------------------------------------------------------------------- /appium_basic/appium_overview/appium_milestone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testerhome/appium-chinese-tutorial/HEAD/appium_basic/appium_overview/appium_milestone.md -------------------------------------------------------------------------------- /appium_client/elements_locate.md: -------------------------------------------------------------------------------- 1 | # 元素定位 2 | -------------------------------------------------------------------------------- /appium_client/elements_operation.md: -------------------------------------------------------------------------------- 1 | # 交互操作 2 | -------------------------------------------------------------------------------- /appium_client/intro.md: -------------------------------------------------------------------------------- 1 | # Appium Client API 篇 2 | -------------------------------------------------------------------------------- /appium_client/others.md: -------------------------------------------------------------------------------- 1 | # 其他 2 | -------------------------------------------------------------------------------- /auto_intro/auto_intro.md: -------------------------------------------------------------------------------- 1 | # 移动 App 自动化测试简述篇 2 | -------------------------------------------------------------------------------- /auto_intro/auto_intro_history.md: -------------------------------------------------------------------------------- 1 | # 移动 App 自动化测试的编年史 2 | -------------------------------------------------------------------------------- /auto_intro/auto_intro_philosophy.md: -------------------------------------------------------------------------------- 1 | # Appium 原理篇 2 | -------------------------------------------------------------------------------- /auto_intro/auto_intro_pursue.md: -------------------------------------------------------------------------------- 1 | # 移动 App 自动化测试的追求 2 | -------------------------------------------------------------------------------- /book.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testerhome/appium-chinese-tutorial/HEAD/cover.jpg -------------------------------------------------------------------------------- /cover_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testerhome/appium-chinese-tutorial/HEAD/cover_small.jpg --------------------------------------------------------------------------------