You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-4
Original file line number
Diff line number
Diff line change
@@ -11,17 +11,17 @@ Depends upon the Selenium Java client library, available [here](http://docs.sele
11
11
<dependency>
12
12
<groupId>io.appium</groupId>
13
13
<artifactId>java-client</artifactId>
14
-
<version>3.2.0</version>
14
+
<version>3.3.0</version>
15
15
</dependency>
16
16
```
17
17
18
-
It currently depends on selenium-java 2.47.1. If it is necessary to use another version of Selenium then you can configure pom.xml as follows:
18
+
It currently depends on selenium-java 2.48.2. If it is necessary to use another version of Selenium then you can configure pom.xml as follows:
19
19
20
20
```
21
21
<dependency>
22
22
<groupId>io.appium</groupId>
23
23
<artifactId>java-client</artifactId>
24
-
<version>3.2.0</version>
24
+
<version>3.3.0</version>
25
25
<exclusions>
26
26
<exclusion>
27
27
<groupId>org.seleniumhq.selenium</groupId>
@@ -108,17 +108,19 @@ If you are working on this project and use Intellij Idea, you need to change the
108
108
If you are using the Eclipse IDE, make sure you are using verison Luna or later.
109
109
110
110
##Changelog##
111
-
*3.3.0 (still not released)*
111
+
*3.3.0*
112
112
- updated the dependency on Selenium to version 2.48.2
113
113
- bug fix and enhancements of io.appium.java_client.service.local.AppiumDriverLocalService
114
114
- FIXED bug which was found and reproduced with Eclipse for Mac OS X. Please read about details here: [#252](https://github.com/appium/java-client/issues/252)
115
115
Thanks to [saikrishna321](https://github.com/saikrishna321) for the bug report
116
116
- FIXED bug which was found out by [Jonahss](https://github.com/Jonahss). Thanks for the reporting. Details: [#272](https://github.com/appium/java-client/issues/272)
117
117
and [#273](https://github.com/appium/java-client/issues/273)
118
+
- For starting an appium server using localService, added additional environment variable to specify the location of Node.js binary: NODE_BINARY_PATH
118
119
- The ability to set additional output streams was provided
119
120
- The additional __startActivity()__ method was added to AndroidDriver. It allows to start activities without the stopping of a target app
120
121
Thanks to [deadmoto](https://github.com/deadmoto) for the contribution
121
122
- The additional extension of the Page Object design pattern was designed. Please read about details here: [#267](https://github.com/appium/java-client/pull/267)
123
+
- New public constructors to AndroidDriver/IOSDriver that allow passing a custom HttpClient.Factory Details: [#276](https://github.com/appium/java-client/pull/278) thanks to [baechul](https://github.com/baechul)
122
124
123
125
*3.2.0*
124
126
- updated the dependency on Selenium to version 2.47.1
0 commit comments