Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ dependencies {
exclude module: 'cglib'
exclude group: 'com.google.code.gson'
}
compile 'com.google.code.gson:gson:2.8.0'
compile 'com.google.code.gson:gson:2.8.1'
compile 'org.apache.httpcomponents:httpclient:4.5.3'
compile 'cglib:cglib:3.2.5'
compile 'commons-validator:commons-validator:1.6'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@

import java.net.URL;

/**
* This class is going to be removed.
* Please use {@link AppiumDriver} instead
*/
@Deprecated
public class YouiEngineDriver<T extends WebElement> extends AppiumDriver<T> {

/** Constructor takes in the Appium Server URL and the capabilities you want to use for this
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@

import io.appium.java_client.MobileElement;

/**
* This class is going to be removed.
* Please use any convenient {@link MobileElement} subclass or
* {@link org.openqa.selenium.remote.RemoteWebElement} instead.
*/
@Deprecated
public class YouiEngineElement extends MobileElement {

}