本文整理匯總了Java中com.codeborne.selenide.impl.BySelectorCollection類的典型用法代碼示例。如果您正苦於以下問題:Java BySelectorCollection類的具體用法?Java BySelectorCollection怎麽用?Java BySelectorCollection使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
BySelectorCollection類屬於com.codeborne.selenide.impl包,在下文中一共展示了BySelectorCollection類的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: decorate
import com.codeborne.selenide.impl.BySelectorCollection; //導入依賴的package包/類
@Override
public Object decorate(ClassLoader loader, Field field) {
By selector = new Annotations(field).buildBy();
if (selector instanceof ByIdOrName) {
// throw new IllegalArgumentException("Please define locator for " + field);
return decorateWithAppium(loader, field);
} else if (WebElement.class.isAssignableFrom(field.getType())) {
return ElementFinder.wrap(searchContext, selector, 0);
} else if (ElementsCollection.class.isAssignableFrom(field.getType())) {
return new ElementsCollection(new BySelectorCollection(searchContext, selector));
} else if (ElementsContainer.class.isAssignableFrom(field.getType())) {
return createElementsContainer(selector, field);
} else if (isDecoratableList(field, ElementsContainer.class)) {
return createElementsContainerList(field);
} else if (isDecoratableList(field, SelenideElement.class)) {
return SelenideElementListProxy.wrap(factory.createLocator(field));
}
return decorateWithAppium(loader, field);
}
示例2: findAll
import com.codeborne.selenide.impl.BySelectorCollection; //導入依賴的package包/類
public ElementsCollection findAll(By seleniumLocator) {
return new ElementsCollection(new BySelectorCollection(this.driver, seleniumLocator));
}
示例3: all
import com.codeborne.selenide.impl.BySelectorCollection; //導入依賴的package包/類
public ElementsCollection all(By seleniumLocator) {
return new ElementsCollection(new BySelectorCollection(this.driver, seleniumLocator));
}
示例4: findAll
import com.codeborne.selenide.impl.BySelectorCollection; //導入依賴的package包/類
public ElementsCollection findAll(String cssSelector) {
return new ElementsCollection(new BySelectorCollection(By.cssSelector(cssSelector)));
}