com.codeborne.selenide.appium.SelenideAppiumElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of selenide-appium Show documentation
Show all versions of selenide-appium Show documentation
Selenide adaptor for Appium framework
package com.codeborne.selenide.appium;
import com.codeborne.selenide.SelenideElement;
import com.google.errorprone.annotations.CanIgnoreReturnValue;
public interface SelenideAppiumElement extends SelenideElement {
@CanIgnoreReturnValue
@Override
SelenideAppiumElement as(String alias);
/**
* @see com.codeborne.selenide.appium.commands.HideKeyboard
*/
@CanIgnoreReturnValue
SelenideAppiumElement hideKeyboard();
/**
* @see com.codeborne.selenide.appium.commands.AppiumScrollTo
*/
@Override
@CanIgnoreReturnValue
SelenideAppiumElement scrollTo();
/**
* @see com.codeborne.selenide.appium.commands.AppiumScrollTo
*/
@CanIgnoreReturnValue
SelenideAppiumElement scroll(AppiumScrollOptions appiumScrollOptions);
/**
* @see com.codeborne.selenide.appium.commands.AppiumSwipeTo
*/
@CanIgnoreReturnValue
SelenideAppiumElement swipeTo();
/**
* @see com.codeborne.selenide.appium.commands.AppiumSwipeTo
*/
@CanIgnoreReturnValue
SelenideAppiumElement swipe(AppiumSwipeOptions appiumSwipeOptions);
/**
* @see com.codeborne.selenide.appium.commands.AppiumTap
*/
@CanIgnoreReturnValue
SelenideAppiumElement tap();
/**
* @see com.codeborne.selenide.appium.commands.AppiumTap
*/
@CanIgnoreReturnValue
SelenideAppiumElement tap(AppiumClickOptions appiumClickOptions);
/**
* @see com.codeborne.selenide.appium.commands.AppiumDoubleTap
*/
@CanIgnoreReturnValue
SelenideAppiumElement doubleTap();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy