public interface IWebPage
| Modifier and Type | Method and Description |
|---|---|
IWebPage |
clearElement(org.openqa.selenium.By by)
Clears the Element specified by a By Object
|
IWebPage |
clearElement(org.openqa.selenium.By by,
int secondsTimeout)
Clears the Element specified by a By Object
|
IWebPage |
clearElementByClassName(String className)
Clears the Element specified by a Class Name
|
IWebPage |
clearElementByClassName(String className,
int secondsTimeout)
Clears the Element specified by a Class Name
|
IWebPage |
clearElementByCssSelector(String selector)
Clears the Element specified by a Css Selector
|
IWebPage |
clearElementByCssSelector(String selector,
int secondsTimeout)
Clears the Element specified by a Css Selector
|
IWebPage |
clearElementById(String id)
Clears the Element specified by an ID
|
IWebPage |
clearElementById(String id,
int secondsTimeout)
Clears the Element specified by an ID
|
IWebPage |
clearElementByLinkText(String linkText)
Clears the Element specified by a Link Text
|
IWebPage |
clearElementByLinkText(String linkText,
int secondsTimeout)
Clears the Element specified by a Link Text
|
IWebPage |
clearElementByName(String name)
Clears the Element specified by a Name
|
IWebPage |
clearElementByName(String name,
int secondsTimeout)
Clears the Element specified by a Name
|
IWebPage |
clearElementByPartialLinkText(String linkText)
Clears the Element specified by a Partial Link Text
|
IWebPage |
clearElementByPartialLinkText(String linkText,
int secondsTimeout)
Clears the Element specified by a Partial Link Text
|
IWebPage |
clearElementByTagName(String name)
Clears the Element specified by a Tag Name
|
IWebPage |
clearElementByTagName(String name,
int secondsTimeout)
Clears the Element specified by a Tag Name
|
IWebPage |
clearElementByXpath(String xpathExpression)
Clears the Element specified by an XPath Expression
|
IWebPage |
clearElementByXpath(String xpathExpression,
int secondsTimeout)
Clears the Element specified by an XPath Expression
|
IWebPage |
clickElement(org.openqa.selenium.By by)
Clicks the Element specified by a By Object
|
IWebPage |
clickElement(org.openqa.selenium.By by,
int secondsTimeout)
Clicks the Element specified by a By Object
|
IWebPage |
clickElementByClassName(String className)
Clicks the Element specified by a Class Name
|
IWebPage |
clickElementByClassName(String className,
int secondsTimeout)
Clicks the Element specified by a Class Name
|
IWebPage |
clickElementByCssSelector(String selector)
Clicks the Element specified by a Css Selector
|
IWebPage |
clickElementByCssSelector(String selector,
int secondsTimeout)
Clicks the Element specified by a Css Selector
|
IWebPage |
clickElementById(String id)
Clicks the Element specified by an ID
|
IWebPage |
clickElementById(String id,
int secondsTimeout)
Clicks the Element specified by an ID
|
IWebPage |
clickElementByLinkText(String linkText)
Clicks the Element specified by a Link Text
|
IWebPage |
clickElementByLinkText(String linkText,
int secondsTimeout)
Clicks the Element specified by a Link Text
|
IWebPage |
clickElementByName(String name)
Clicks the Element specified by a Name
|
IWebPage |
clickElementByName(String name,
int secondsTimeout)
Clicks the Element specified by a Name
|
IWebPage |
clickElementByPartialLinkText(String linkText)
Clicks the Element specified by a Partial Link Text
|
IWebPage |
clickElementByPartialLinkText(String linkText,
int secondsTimeout)
Clicks the Element specified by a Partial Link Text
|
IWebPage |
clickElementByTagName(String name)
Clicks the Element specified by a Tag Name
|
IWebPage |
clickElementByTagName(String name,
int secondsTimeout)
Clicks the Element specified by a Tag Name
|
IWebPage |
clickElementByXpath(String xpathExpression)
Clicks the Element specified by an XPath Expression
|
IWebPage |
clickElementByXpath(String xpathExpression,
int secondsTimeout)
Clicks the Element specified by an XPath Expression
|
void |
close()
Close current Window and quit browser if was only Window open
|
org.openqa.selenium.support.ui.WebDriverWait |
driverWait()
Return a WebDriverWait with a default timeout
|
org.openqa.selenium.support.ui.WebDriverWait |
driverWait(int secondsTimeout)
Return a WebDriverWait with a given timeout
|
org.openqa.selenium.WebElement |
findElement(org.openqa.selenium.By by)
Returns the first WebElement specified by a By Object
|
org.openqa.selenium.WebElement |
findElementByClassName(String className)
Returns the first WebElement specified by a Class Name
|
org.openqa.selenium.WebElement |
findElementByCssSelector(String selector)
Returns the first WebElement specified by a Css Selector
|
org.openqa.selenium.WebElement |
findElementById(String id)
Returns the first WebElement specified by an ID
|
org.openqa.selenium.WebElement |
findElementByLinkText(String linkText)
Returns the first WebElement specified by a Link Text
|
org.openqa.selenium.WebElement |
findElementByName(String name)
Returns the first WebElement specified by a Name
|
org.openqa.selenium.WebElement |
findElementByPartialLinkText(String linkText)
Returns the first WebElement specified by a Partial Link Text
|
org.openqa.selenium.WebElement |
findElementByTagName(String name)
Returns the first WebElement specified by a Tag Name
|
org.openqa.selenium.WebElement |
findElementByXpath(String xpathExpression)
Returns the first WebElement specified by an XPath Expression
|
List<org.openqa.selenium.WebElement> |
findElements(org.openqa.selenium.By by)
Returns all WebElements specified by a By Object
|
List<org.openqa.selenium.WebElement> |
findElementsByClassName(String className)
Returns all WebElements specified by a Class Name
|
List<org.openqa.selenium.WebElement> |
findElementsByCssSelector(String selector)
Returns all WebElements specified by a Css Selector
|
List<org.openqa.selenium.WebElement> |
findElementsById(String id)
Returns all WebElements specified by an ID
|
List<org.openqa.selenium.WebElement> |
findElementsByLinkText(String linkText)
Returns all WebElements specified by a Link Text
|
List<org.openqa.selenium.WebElement> |
findElementsByName(String name)
Returns all WebElements specified by a Name
|
List<org.openqa.selenium.WebElement> |
findElementsByPartialLinkText(String linkText)
Returns all WebElements specified by a Partial Link Text
|
List<org.openqa.selenium.WebElement> |
findElementsByTagName(String name)
Returns all WebElements specified by a Tag Name
|
List<org.openqa.selenium.WebElement> |
findElementsByXpath(String xpathExpression)
Returns all WebElements specified by an XPath Expression
|
IWebPage |
get(String url)
Load WebPage with the given URL in current Browser Window
|
String |
getCurrentUrl()
Returns the String representation of the URL f the current WebPage
|
String |
getPageSource()
Returns the source of the current WebPage
|
String |
getTitle()
Returns the Title of the current WebPage
|
org.openqa.selenium.WebDriver |
getWebDriver()
Returns the WebDriver associated with this WebPage
|
String |
getWindowHandle()
Return an opaque handle to this window that uniquely identifies it within this driver instance
|
Set<String> |
getWindowHandles()
Return a set of window handles which can be used to iterate over all open windows of this
WebDriver instance by passing them to switchTo().WebDriver.Options.window()
|
org.openqa.selenium.WebDriver.Options |
manage()
Returns the Options interface for the WebPage
|
IWebPage |
maximize()
Maximizes the WebPage
|
org.openqa.selenium.WebDriver.Navigation |
navigate()
Returns an abstraction allowing the Diver to access the Browser's history to navigate to a URL
|
void |
quit()
Quit the Driver, closes all associated Windows
|
IWebPage |
sendKeysToElement(org.openqa.selenium.By by,
CharSequence keysToSend)
Send CharSequence of Keys to an Element specified by a By Object
|
IWebPage |
sendKeysToElement(org.openqa.selenium.By by,
CharSequence keysToSend,
int secondsTimeout)
Send CharSequence of Keys to an Element specified by a By Object
|
IWebPage |
sendKeysToElementByClassName(String className,
CharSequence keysToSend)
Send CharSequence of Keys to an Element specified by a Class Name
|
IWebPage |
sendKeysToElementByClassName(String className,
CharSequence keysToSend,
int secondsTimeout)
Send CharSequence of Keys to an Element specified by a Class Name
|
IWebPage |
sendKeysToElementByCssSelector(String selector,
CharSequence keysToSend)
Send CharSequence of Keys to an Element specified by a Css Selector
|
IWebPage |
sendKeysToElementByCssSelector(String selector,
CharSequence keysToSend,
int secondsTimeout)
Send CharSequence of Keys to an Element specified by a Css Selector
|
IWebPage |
sendKeysToElementById(String id,
CharSequence keysToSend)
Send CharSequence of Keys to an Element specified by an ID
|
IWebPage |
sendKeysToElementById(String id,
CharSequence keysToSend,
int secondsTimeout)
Send CharSequence of Keys to an Element specified by an ID
|
IWebPage |
sendKeysToElementByLinkText(String linkText,
CharSequence keysToSend)
Send CharSequence of Keys to an Element specified by a Link Text
|
IWebPage |
sendKeysToElementByLinkText(String linkText,
CharSequence keysToSend,
int secondsTimeout)
Send CharSequence of Keys to an Element specified by a Link Text
|
IWebPage |
sendKeysToElementByName(String name,
CharSequence keysToSend)
Send CharSequence of Keys to an Element specified by a Name
|
IWebPage |
sendKeysToElementByName(String name,
CharSequence keysToSend,
int secondsTimeout)
Send CharSequence of Keys to an Element specified by a Name
|
IWebPage |
sendKeysToElementByPartialLinkText(String linkText,
CharSequence keysToSend)
Send CharSequence of Keys to an Element specified by a Partial Link Text
|
IWebPage |
sendKeysToElementByPartialLinkText(String linkText,
CharSequence keysToSend,
int secondsTimeout)
Send CharSequence of Keys to an Element specified by a Partial Link Text
|
IWebPage |
sendKeysToElementByTagName(String name,
CharSequence keysToSend)
Send CharSequence of Keys to an Element specified by a Tag Name
|
IWebPage |
sendKeysToElementByTagName(String name,
CharSequence keysToSend,
int secondsTimeout)
Send CharSequence of Keys to an Element specified by a Tag Name
|
IWebPage |
sendKeysToElementByXpath(String xpathExpression,
CharSequence keysToSend)
Send CharSequence of Keys to an Element specified by an XPath Expression
|
IWebPage |
sendKeysToElementByXpath(String xpathExpression,
CharSequence keysToSend,
int secondsTimeout)
Send CharSequence of Keys to an Element specified by an XPath Expression
|
org.openqa.selenium.WebDriver.TargetLocator |
switchTo()
Send future commands to a different frame
|
IWebPage |
switchToFrame(org.openqa.selenium.By by)
Send future commands to the frame specified by By Object
|
IWebPage |
switchToFrameByClassName(String className)
Send future commands to the frame specified by Class Name
|
IWebPage |
switchToFrameByCssSelector(String selector)
Send future commands to the frame specified by Css Selector
|
IWebPage |
switchToFrameById(String id)
Send future commands to the frame specified by ID
|
IWebPage |
switchToFrameByLinkText(String linkText)
Send future commands to the frame specified by Link Text
|
IWebPage |
switchToFrameByName(String name)
Send future commands to the frame specified by Name
|
IWebPage |
switchToFrameByPartialLinkText(String linkText)
Send future commands to the frame specified by Partial Link Text
|
IWebPage |
switchToFrameByTagName(String name)
Send future commands to the frame specified by Tag Name
|
IWebPage |
switchToFrameByXpath(String xpathExpression)
Send future commands to the frame specified by XPath Expression
|
org.openqa.selenium.WebElement |
waitForElement(org.openqa.selenium.By by)
Waits for a specified By object
|
org.openqa.selenium.WebElement |
waitForElement(org.openqa.selenium.By by,
int secondsTimeout)
Waits for a specified By object with timeout
|
org.openqa.selenium.WebElement |
waitForElementByClassName(String className)
Waits for an Object with specified Class Name
|
org.openqa.selenium.WebElement |
waitForElementByClassName(String className,
int secondsTimeout)
Waits for an Object with specified Class Name with timeout
|
org.openqa.selenium.WebElement |
waitForElementByCssSelector(String selector)
Waits for an Object with specified Css Selector
|
org.openqa.selenium.WebElement |
waitForElementByCssSelector(String selector,
int secondsTimeout)
Waits for an Object with specified Css Selector with timeout
|
org.openqa.selenium.WebElement |
waitForElementById(String id)
Waits for an Object with specified ID
|
org.openqa.selenium.WebElement |
waitForElementById(String id,
int secondsTimeout)
Waits for an Object with specified ID with timeout
|
org.openqa.selenium.WebElement |
waitForElementByLinkText(String linkText)
Waits for an Object with specified Link Text
|
org.openqa.selenium.WebElement |
waitForElementByLinkText(String linkText,
int secondsTimeout)
Waits for an Object with specified Link Text with timeout
|
org.openqa.selenium.WebElement |
waitForElementByName(String name)
Waits for an Object with specified Name
|
org.openqa.selenium.WebElement |
waitForElementByName(String name,
int secondsTimeout)
Waits for an Object with specified Name with timeout
|
org.openqa.selenium.WebElement |
waitForElementByPartialLinkText(String linkText)
Waits for an Object with specified Partial Link Text
|
org.openqa.selenium.WebElement |
waitForElementByPartialLinkText(String linkText,
int secondsTimeout)
Waits for an Object with specified Partial Link Text with timeout
|
org.openqa.selenium.WebElement |
waitForElementByTagName(String tagName)
Waits for an Object with specified Tag Name
|
org.openqa.selenium.WebElement |
waitForElementByTagName(String tagName,
int secondsTimeout)
Waits for an Object with specified Tag Name with timeout
|
org.openqa.selenium.WebElement |
waitForElementByXpath(String xpathExpression)
Waits for an Object with specified XPath expression
|
org.openqa.selenium.WebElement |
waitForElementByXpath(String xpathExpression,
int secondsTimeout)
Waits for an Object with specified XPath expression with timeout
|
IWebPage |
waitForPageLoad()
Waits for the page to fully load with the default timeout
|
IWebPage |
waitForPageLoad(int secondsTimeout)
Waits for the page to fully load with the given timeout
|
void close()
IWebPage clearElementByClassName(String className)
className - The Object used to specify the ElementsecondsTimeout - The wait timeout in secondsIWebPage clearElementByClassName(String className, int secondsTimeout)
className - The Object used to specify the ElementsecondsTimeout - The wait timeout in secondsIWebPage clearElementByCssSelector(String selector)
selector - The Object used to specify the ElementIWebPage clearElementByCssSelector(String selector, int secondsTimeout)
selector - The Object used to specify the ElementsecondsTimeout - The wait timeout in secondsIWebPage clearElementById(String id)
id - The Object used to specify the ElementIWebPage clearElementById(String id, int secondsTimeout)
id - The Object used to specify the ElementsecondsTimeout - The wait timeout in secondsIWebPage clearElementByLinkText(String linkText)
linkText - The Object used to specify the ElementIWebPage clearElementByLinkText(String linkText, int secondsTimeout)
linkText - The Object used to specify the ElementsecondsTimeout - The wait timeout in secondsIWebPage clearElementByName(String name)
name - The Object used to specify the ElementIWebPage clearElementByName(String name, int secondsTimeout)
name - The Object used to specify the ElementsecondsTimeout - The wait timeout in secondsIWebPage clearElementByPartialLinkText(String linkText)
linkText - The Object used to specify the ElementIWebPage clearElementByPartialLinkText(String linkText, int secondsTimeout)
linkText - The Object used to specify the ElementsecondsTimeout - The wait timeout in secondsIWebPage clearElementByTagName(String name)
name - The Object used to specify the ElementIWebPage clearElementByTagName(String name, int secondsTimeout)
name - The Object used to specify the ElementsecondsTimeout - The wait timeout in secondsIWebPage clearElementByXpath(String xpathExpression)
xpathExpression - The Object used to specify the ElementIWebPage clearElementByXpath(String xpathExpression, int secondsTimeout)
xpathExpression - The Object used to specify the ElementsecondsTimeout - The wait timeout in secondsIWebPage clearElement(org.openqa.selenium.By by)
by - The Object used to specify the ElementIWebPage clearElement(org.openqa.selenium.By by, int secondsTimeout)
by - The Object used to specify the ElementsecondsTimeout - The wait timeout in secondsIWebPage clickElementByClassName(String className)
className - The Object used to specify the ElementIWebPage clickElementByClassName(String className, int secondsTimeout)
className - The Object used to specify the ElementsecondsTimeout - The wait timeout in secondsIWebPage clickElementByCssSelector(String selector)
selector - The Object used to specify the ElementIWebPage clickElementByCssSelector(String selector, int secondsTimeout)
selector - The Object used to specify the ElementsecondsTimeout - The wait timeout in secondsIWebPage clickElementById(String id)
id - The Object used to specify the ElementIWebPage clickElementById(String id, int secondsTimeout)
id - The Object used to specify the ElementsecondsTimeout - The wait timeout in secondsIWebPage clickElementByLinkText(String linkText)
linkText - The Object used to specify the ElementIWebPage clickElementByLinkText(String linkText, int secondsTimeout)
linkText - The Object used to specify the ElementsecondsTimeout - The wait timeout in secondsIWebPage clickElementByName(String name)
name - The Object used to specify the ElementIWebPage clickElementByName(String name, int secondsTimeout)
name - The Object used to specify the ElementsecondsTimeout - The wait timeout in secondsIWebPage clickElementByPartialLinkText(String linkText)
linkText - The Object used to specify the ElementIWebPage clickElementByPartialLinkText(String linkText, int secondsTimeout)
linkText - The Object used to specify the ElementsecondsTimeout - The wait timeout in secondsIWebPage clickElementByTagName(String name)
name - The Object used to specify the ElementIWebPage clickElementByTagName(String name, int secondsTimeout)
name - The Object used to specify the ElementsecondsTimeout - The wait timeout in secondsIWebPage clickElementByXpath(String xpathExpression)
xpathExpression - The Object used to specify the ElementIWebPage clickElementByXpath(String xpathExpression, int secondsTimeout)
xpathExpression - The Object used to specify the ElementsecondsTimeout - The wait timeout in secondsIWebPage clickElement(org.openqa.selenium.By by)
by - The Object used to specify the ElementIWebPage clickElement(org.openqa.selenium.By by, int secondsTimeout)
by - The Object used to specify the ElementsecondsTimeout - The wait timeout in secondsIWebPage sendKeysToElementByClassName(String className, CharSequence keysToSend)
className - The Object used to specify the ElementkeysToSend - The Keys to be sentIWebPage sendKeysToElementByClassName(String className, CharSequence keysToSend, int secondsTimeout)
className - The Object used to specify the ElementkeysToSend - The Keys to be sentsecondsTimeout - The wait timeout in secondsIWebPage sendKeysToElementByCssSelector(String selector, CharSequence keysToSend)
selector - The Object used to specify the ElementkeysToSend - The Keys to be sentIWebPage sendKeysToElementByCssSelector(String selector, CharSequence keysToSend, int secondsTimeout)
selector - The Object used to specify the ElementkeysToSend - The Keys to be sentsecondsTimeout - The wait timeout in secondsIWebPage sendKeysToElementById(String id, CharSequence keysToSend)
id - The Object used to specify the ElementkeysToSend - The Keys to be sentIWebPage sendKeysToElementById(String id, CharSequence keysToSend, int secondsTimeout)
id - The Object used to specify the ElementkeysToSend - The Keys to be sentsecondsTimeout - The wait timeout in secondsIWebPage sendKeysToElementByLinkText(String linkText, CharSequence keysToSend)
linkText - The Object used to specify the ElementkeysToSend - The Keys to be sentIWebPage sendKeysToElementByLinkText(String linkText, CharSequence keysToSend, int secondsTimeout)
linkText - The Object used to specify the ElementkeysToSend - The Keys to be sentsecondsTimeout - The wait timeout in secondsIWebPage sendKeysToElementByName(String name, CharSequence keysToSend)
name - The Object used to specify the ElementkeysToSend - The Keys to be sentIWebPage sendKeysToElementByName(String name, CharSequence keysToSend, int secondsTimeout)
name - The Object used to specify the ElementkeysToSend - The Keys to be sentsecondsTimeout - The wait timeout in secondsIWebPage sendKeysToElementByPartialLinkText(String linkText, CharSequence keysToSend)
linkText - The Object used to specify the ElementkeysToSend - The Keys to be sentIWebPage sendKeysToElementByPartialLinkText(String linkText, CharSequence keysToSend, int secondsTimeout)
linkText - The Object used to specify the ElementkeysToSend - The Keys to be sentsecondsTimeout - The wait timeout in secondsIWebPage sendKeysToElementByTagName(String name, CharSequence keysToSend)
name - The Object used to specify the ElementkeysToSend - The Keys to be sentIWebPage sendKeysToElementByTagName(String name, CharSequence keysToSend, int secondsTimeout)
name - The Object used to specify the ElementkeysToSend - The Keys to be sentsecondsTimeout - The wait timeout in secondsIWebPage sendKeysToElementByXpath(String xpathExpression, CharSequence keysToSend)
xpathExpression - The Object used to specify the ElementkeysToSend - The Keys to be sentIWebPage sendKeysToElementByXpath(String xpathExpression, CharSequence keysToSend, int secondsTimeout)
xpathExpression - The Object used to specify the ElementkeysToSend - The Keys to be sentsecondsTimeout - The wait timeout in secondsIWebPage sendKeysToElement(org.openqa.selenium.By by, CharSequence keysToSend)
by - The Object used to specify the ElementkeysToSend - The Keys to be sentIWebPage sendKeysToElement(org.openqa.selenium.By by, CharSequence keysToSend, int secondsTimeout)
by - The Object used to specify the ElementkeysToSend - The Keys to be sentsecondsTimeout - The wait timeout in secondsorg.openqa.selenium.WebElement findElementByClassName(String className)
className - The Object used to find the elementList<org.openqa.selenium.WebElement> findElementsByClassName(String className)
className - The Object used to find the elementsorg.openqa.selenium.WebElement findElementByCssSelector(String selector)
selector - The Object used to find the elementList<org.openqa.selenium.WebElement> findElementsByCssSelector(String selector)
selector - The Object used to find the elementsorg.openqa.selenium.WebElement findElementById(String id)
id - The Object used to find the elementList<org.openqa.selenium.WebElement> findElementsById(String id)
id - The Object used to find the elementsorg.openqa.selenium.WebElement findElementByLinkText(String linkText)
linkText - The Object used to find the elementList<org.openqa.selenium.WebElement> findElementsByLinkText(String linkText)
linkText - The Object used to find the elementsorg.openqa.selenium.WebElement findElementByName(String name)
name - The Object used to find the elementList<org.openqa.selenium.WebElement> findElementsByName(String name)
name - The Object used to find the elementsorg.openqa.selenium.WebElement findElementByPartialLinkText(String linkText)
linkText - The Object used to find the elementList<org.openqa.selenium.WebElement> findElementsByPartialLinkText(String linkText)
linkText - The Object used to find the elementsorg.openqa.selenium.WebElement findElementByTagName(String name)
name - The Object used to find the elementList<org.openqa.selenium.WebElement> findElementsByTagName(String name)
name - The Object used to find the elementsorg.openqa.selenium.WebElement findElementByXpath(String xpathExpression)
xpathExpression - The Object used to find the elementList<org.openqa.selenium.WebElement> findElementsByXpath(String xpathExpression)
xpathExpression - The Object used to find the elementsorg.openqa.selenium.WebElement findElement(org.openqa.selenium.By by)
by - The Object used to find the elementList<org.openqa.selenium.WebElement> findElements(org.openqa.selenium.By by)
by - The Object used to find the elementsIWebPage get(String url)
url - The URL of the specified WebPageString getCurrentUrl()
String getPageSource()
String getTitle()
String getWindowHandle()
Set<String> getWindowHandles()
org.openqa.selenium.WebDriver.Options manage()
org.openqa.selenium.WebDriver.Navigation navigate()
void quit()
org.openqa.selenium.WebDriver.TargetLocator switchTo()
IWebPage switchToFrameByClassName(String className)
className - The element used to identify the frameIWebPage switchToFrameByCssSelector(String selector)
selector - The element used to identify the frameIWebPage switchToFrameById(String id)
id - The element used to identify the frameIWebPage switchToFrameByLinkText(String linkText)
linkText - The element used to identify the frameIWebPage switchToFrameByName(String name)
name - The element used to identify the frameIWebPage switchToFrameByPartialLinkText(String linkText)
linkText - The element used to identify the frameIWebPage switchToFrameByTagName(String name)
name - The element used to identify the frameIWebPage switchToFrameByXpath(String xpathExpression)
xpathExpression - The element used to identify the frameIWebPage switchToFrame(org.openqa.selenium.By by)
by - The element used to identify the frameorg.openqa.selenium.WebElement waitForElementByClassName(String className)
className - The specified Objectorg.openqa.selenium.WebElement waitForElementByClassName(String className, int secondsTimeout)
className - The specified ObjectsecondsTimeout - The Timeoutorg.openqa.selenium.WebElement waitForElementByCssSelector(String selector)
selector - The specified Objectorg.openqa.selenium.WebElement waitForElementByCssSelector(String selector, int secondsTimeout)
selector - The specified ObjectsecondsTimeout - The Timeoutorg.openqa.selenium.WebElement waitForElementById(String id)
id - The specified Objectorg.openqa.selenium.WebElement waitForElementById(String id, int secondsTimeout)
id - The specified ObjectsecondsTimeout - The Timeoutorg.openqa.selenium.WebElement waitForElementByLinkText(String linkText)
linkText - The specified Objectorg.openqa.selenium.WebElement waitForElementByLinkText(String linkText, int secondsTimeout)
linkText - The specified ObjectsecondsTimeout - The Timeoutorg.openqa.selenium.WebElement waitForElementByName(String name)
name - The specified Objectorg.openqa.selenium.WebElement waitForElementByName(String name, int secondsTimeout)
name - The specified ObjectsecondsTimeout - The Timeoutorg.openqa.selenium.WebElement waitForElementByPartialLinkText(String linkText)
linkText - The specified Objectorg.openqa.selenium.WebElement waitForElementByPartialLinkText(String linkText, int secondsTimeout)
linkText - The specified ObjectsecondsTimeout - The Timeoutorg.openqa.selenium.WebElement waitForElementByTagName(String tagName)
tagName - The specified Objectorg.openqa.selenium.WebElement waitForElementByTagName(String tagName, int secondsTimeout)
tagName - The specified ObjectsecondsTimeout - The Timeoutorg.openqa.selenium.WebElement waitForElementByXpath(String xpathExpression)
xpathExpression - The specified Objectorg.openqa.selenium.WebElement waitForElementByXpath(String xpathExpression, int secondsTimeout)
xpathExpression - The specified ObjectsecondsTimeout - The Timeoutorg.openqa.selenium.WebElement waitForElement(org.openqa.selenium.By by)
by - The specified Objectorg.openqa.selenium.WebElement waitForElement(org.openqa.selenium.By by,
int secondsTimeout)
by - The specified ObjectsecondsTimeout - The Timeoutorg.openqa.selenium.support.ui.WebDriverWait driverWait()
org.openqa.selenium.support.ui.WebDriverWait driverWait(int secondsTimeout)
secondsTimeout - org.openqa.selenium.WebDriver getWebDriver()
IWebPage maximize()
IWebPage waitForPageLoad()
IWebPage waitForPageLoad(int secondsTimeout)
Copyright © 2020. All rights reserved.