本文整理汇总了Java中org.openqa.selenium.support.ui.ExpectedConditions.presenceOfElementLocated方法的典型用法代码示例。如果您正苦于以下问题:Java ExpectedConditions.presenceOfElementLocated方法的具体用法?Java ExpectedConditions.presenceOfElementLocated怎么用?Java ExpectedConditions.presenceOfElementLocated使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.openqa.selenium.support.ui.ExpectedConditions
的用法示例。
在下文中一共展示了ExpectedConditions.presenceOfElementLocated方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: CSSSelectorPresenceWait
import org.openqa.selenium.support.ui.ExpectedConditions; //导入方法依赖的package包/类
/**
* Creates a new instance of this object using a given web driver and CSS
* selector.
*
* @param driver
* Driver to use for waiting
* @param cssSelector
* CSS selector that corresponds to the element to wait for its
* presence
*/
public CSSSelectorPresenceWait(final WebDriver driver, final String cssSelector) {
super(driver);
this.mCondition = ExpectedConditions.presenceOfElementLocated(By.cssSelector(cssSelector));
}
示例2: NamePresenceWait
import org.openqa.selenium.support.ui.ExpectedConditions; //导入方法依赖的package包/类
/**
* Creates a new instance of this object using a given web driver and name.
*
* @param driver
* Driver to use for waiting
* @param name
* Name of the element to wait for its presence
*/
public NamePresenceWait(final WebDriver driver, final String name) {
super(driver);
this.mCondition = ExpectedConditions.presenceOfElementLocated(By.name(name));
}
示例3: LinkTextPresenceWait
import org.openqa.selenium.support.ui.ExpectedConditions; //导入方法依赖的package包/类
/**
* Creates a new instance of this object using a given web driver and CSS
* selector.
*
* @param driver
* Driver to use for waiting
* @param partialLinkText
* Partial link text that corresponds to the element to wait for
* its presence
*/
public LinkTextPresenceWait(final WebDriver driver, final String partialLinkText) {
super(driver);
this.mCondition = ExpectedConditions.presenceOfElementLocated(By.partialLinkText(partialLinkText));
}