com.codeborne.selenide.appium.commands.AppiumTap 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.tap;
public class AppiumTap extends AppiumClick {
@Override
public void execute(WebElementSource locator, final Object @Nullable [] args) {
var newArgs = (args == null || args.length == 0) ?
new Object[] {tap()} :
args;
super.execute(locator, newArgs);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy