Skip to content

Commit 820a1ec

Browse files
Merge pull request #652 from TikhomirovSergey/deprecated_youiengine
Deprecated youiengine
2 parents 34ed5c6 + 1e516f8 commit 820a1ec

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ dependencies {
5858
exclude module: 'cglib'
5959
exclude group: 'com.google.code.gson'
6060
}
61-
compile 'com.google.code.gson:gson:2.8.0'
61+
compile 'com.google.code.gson:gson:2.8.1'
6262
compile 'org.apache.httpcomponents:httpclient:4.5.3'
6363
compile 'cglib:cglib:3.2.5'
6464
compile 'commons-validator:commons-validator:1.6'

src/main/java/io/appium/java_client/youiengine/YouiEngineDriver.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@
2323

2424
import java.net.URL;
2525

26+
/**
27+
* This class is going to be removed.
28+
* Please use {@link AppiumDriver} instead
29+
*/
30+
@Deprecated
2631
public class YouiEngineDriver<T extends WebElement> extends AppiumDriver<T> {
2732

2833
/** Constructor takes in the Appium Server URL and the capabilities you want to use for this

src/main/java/io/appium/java_client/youiengine/YouiEngineElement.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@
1818

1919
import io.appium.java_client.MobileElement;
2020

21+
/**
22+
* This class is going to be removed.
23+
* Please use any convenient {@link MobileElement} subclass or
24+
* {@link org.openqa.selenium.remote.RemoteWebElement} instead.
25+
*/
26+
@Deprecated
2127
public class YouiEngineElement extends MobileElement {
2228

2329
}

0 commit comments

Comments
 (0)