接下来分别用目前市面上主流的 Java 和 Python 环境进行搭建。
Java 版本
安装 Java 语言,即 JDK。推荐 1.8 的版本。
安装 IDE,推荐 JetBrains IDEA Community Edition,这款是目前主流的 Java 开发工具,而且社区版是免费使用的,拥有出色的用户交互,以及使用界面,完全能够应对一般的自动化测试的编程。当然如果你更加熟悉Eclipse,也是可以使用的。
安装 Selenium,推荐使用 Maven 直接引入依赖。当自动化测试作为团队共同的解决方案,而不是一个人单独维护的方案的时候,团队需要统一的 Selenium 版本以及共同的 API 操作,Maven 的使用,无疑简化了项目的难度,很好的解决了此类问题。
xml
<!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java -->
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>3.3.1</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-remote-driver -->
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-remote-driver</artifactId>
<version>3.3.1</version>
</dependency>
原文转自:http://gitbook.cn/books/58e54b57cfcd6fa52dcef1d2/index.html