File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed
src/main/java/io/appium/java_client Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -732,4 +732,10 @@ protected static boolean _isNotNullOrEmpty(String str) {
732732 protected static boolean _isNotNullOrEmpty (Object ob ) {
733733 return ob != null ;
734734 }
735+
736+ @ Override
737+ public abstract RequiredElementType scrollTo (String text );
738+
739+ @ Override
740+ public abstract RequiredElementType scrollToExact (String text );
735741}
Original file line number Diff line number Diff line change 77public interface GenericFindsByLinkText <T extends WebElement > {
88 T findElementByLinkText (String linkText );
99 List <T > findElementsByLinkText (String linkText );
10- WebElement findElementByPartialLinkText (String partialLinkText );
10+ T findElementByPartialLinkText (String partialLinkText );
1111 List <T > findElementsByPartialLinkText (String partialLinkText );
1212}
Original file line number Diff line number Diff line change 55import java .util .List ;
66
77public interface GenericFindsByTagName <T extends WebElement > {
8- WebElement findElementByTagName (String tagName );
9- List <WebElement > findElementsByTagName (String tagName );
8+ T findElementByTagName (String tagName );
9+ List <T > findElementsByTagName (String tagName );
1010}
You can’t perform that action at this time.
0 commit comments