com.codeborne.selenide.appium.commands.AppiumDoubleTap 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.commands;
import com.codeborne.selenide.impl.WebElementSource;
import org.jspecify.annotations.Nullable;
import static com.codeborne.selenide.appium.AppiumClickOptions.doubleTap;
public class AppiumDoubleTap extends AppiumClick {
@Override
public void execute(WebElementSource locator, Object @Nullable [] args) {
super.execute(locator, new Object[] {doubleTap()});
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy