File tree 3 files changed +12
-1
lines changed
src/main/java/io/appium/java_client/youiengine
3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ dependencies {
58
58
exclude module : ' cglib'
59
59
exclude group : ' com.google.code.gson'
60
60
}
61
- compile ' com.google.code.gson:gson:2.8.0 '
61
+ compile ' com.google.code.gson:gson:2.8.1 '
62
62
compile ' org.apache.httpcomponents:httpclient:4.5.3'
63
63
compile ' cglib:cglib:3.2.5'
64
64
compile ' commons-validator:commons-validator:1.6'
Original file line number Diff line number Diff line change 23
23
24
24
import java .net .URL ;
25
25
26
+ /**
27
+ * This class is going to be removed.
28
+ * Please use {@link AppiumDriver} instead
29
+ */
30
+ @ Deprecated
26
31
public class YouiEngineDriver <T extends WebElement > extends AppiumDriver <T > {
27
32
28
33
/** Constructor takes in the Appium Server URL and the capabilities you want to use for this
Original file line number Diff line number Diff line change 18
18
19
19
import io .appium .java_client .MobileElement ;
20
20
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
21
27
public class YouiEngineElement extends MobileElement {
22
28
23
29
}
You can’t perform that action at this time.
0 commit comments