com.codeborne.selenide.appium.AppiumCondition 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 = concise API for Selenium WebDriver
package com.codeborne.selenide.appium;
import com.codeborne.selenide.WebElementCondition;
import com.codeborne.selenide.appium.conditions.AttributeWithValue;
import com.codeborne.selenide.appium.conditions.CombinedAttribute;
public class AppiumCondition {
public static WebElementCondition attribute(CombinedAttribute attribute, String expectedAttributeValue) {
return new AttributeWithValue(attribute, expectedAttributeValue);
}
}