树洞 Appium Server 安装

l_smile · 2018年04月28日 · 最后由 lichenxiao 回复于 2020年02月13日 · 2844 次阅读

Appium Server 环境安装

  • 安装 nodejs
  • 安装 appium server 命令
    npm install -g appium
  • 启动 appium server 命令
    appium --session-override

Appium 客户端安装

下载地址

Language/Framework Github Repro and Installation Instructions
Ruby https://github.com/appium/ruby_lib
Python https://github.com/appium/python-client
Java https://github.com/appium/java-client
JavaScript(Node.js) https://github.com/admc/wd
Objective C https://github.com/appium/selenium-objective-c
PHP https://github.com/appium/php-client
C #(.NET) https://github.com/appium/appium-dotnet-driver
RobotFremework https://github.com/jollychang/robotframework-appiumlibrary

java 客户端安装

  • 配置 maven 项目
  • 在 src/test 下编写用例
  • 在 pom.xml 文件中添加依赖
<dependency>   
  <groupId>io.appium</groupId>   
  <artifactId>java-client</artifactId>   
  <version>${version.you.require}</version>   
  <scope>test</scope>   
</dependency>   

python 客户端安装

  • 安装命令
    pip install Appium-Python-Client
共收到 1 条回复 时间 点赞

请问 Appium server 能在 centOS7 上安装吗?

需要 登录 后方可回复, 如果你还没有账号请点击这里 注册