Appium的Android Studio例子

来源:互联网 发布:eggnog数据库 编辑:程序博客网 时间:2024/06/05 07:01
appium文档
http://appium.io/slate/cn/master/?python# 


NodeJs
======================================
    https://npm.taobao.org/mirrors/node/v8.1.2/node-v8.1.2-x64.msi


Android Studio配置
====================
    ```
    buildscript {
        repositories {
            jcenter()
            maven {
                url "http://repo.maven.apache.org/maven2"
            }
        }
        dependencies {
            classpath 'com.android.tools.build:gradle:2.x.x'
        }
    }
    ```
    ...
    项目的build.gradle
    ```
    dependencies {
        ...
        testCompile 'io.appium:java-client:1.+'
        ...
    }
    ```
测试例子
===================
    https://github.com/247321453/AppiumDemo
阅读全文
0 0
原创粉丝点击