本文整理汇总了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)));
}