All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.codeborne.selenide.appium.SelenideAppiumCollection Maven / Gradle / Ivy

There is a newer version: 7.5.0
Show newest version
package com.codeborne.selenide.appium;

import com.codeborne.selenide.BaseElementsCollection;
import com.codeborne.selenide.Driver;
import com.codeborne.selenide.impl.CollectionSource;
import org.openqa.selenium.By;
import org.openqa.selenium.WebElement;

import javax.annotation.ParametersAreNonnullByDefault;
import java.util.Collection;

@ParametersAreNonnullByDefault
public class SelenideAppiumCollection extends BaseElementsCollection {
  SelenideAppiumCollection(CollectionSource collection) {
    super(collection);
  }

  SelenideAppiumCollection(Driver driver, Collection elements) {
    super(driver, elements);
  }

  SelenideAppiumCollection(Driver driver, By seleniumSelector) {
    super(driver, seleniumSelector);
  }

  @Override
  protected SelenideAppiumCollection create(CollectionSource source) {
    return new SelenideAppiumCollection(source);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy