Uses of Interface
org.openqa.selenium.WebElement

Packages that use WebElement
org.openqa.selenium   
org.openqa.selenium.interactions   
org.openqa.selenium.internal   
 

Uses of WebElement in org.openqa.selenium
 

Methods in org.openqa.selenium that return WebElement
 WebElement WebDriver.TargetLocator.activeElement()
          Switches to the element that currently has focus within the document currently "switched to", or the body element if this cannot be detected.
 WebElement WebElement.findElement(By by)
          Find the first WebElement using the given method.
 WebElement WebDriver.findElement(By by)
          Find the first WebElement using the given method.
 WebElement SearchContext.findElement(By by)
          Find the first WebElement using the given method.
 WebElement By.findElement(SearchContext context)
          Find a single element.
 

Methods in org.openqa.selenium that return types with arguments of type WebElement
 List<WebElement> WebElement.findElements(By by)
          Find all elements within the current context using the given mechanism.
 List<WebElement> WebDriver.findElements(By by)
          Find all elements within the current page using the given mechanism.
 List<WebElement> SearchContext.findElements(By by)
          Find all elements within the current context using the given mechanism.
abstract  List<WebElement> By.findElements(SearchContext context)
          Find many elements.
 

Methods in org.openqa.selenium with parameters of type WebElement
 WebDriver WebDriver.TargetLocator.frame(WebElement frameElement)
          Select a frame using its previously located WebElement.
 

Uses of WebElement in org.openqa.selenium.interactions
 

Methods in org.openqa.selenium.interactions with parameters of type WebElement
 Actions Actions.click(WebElement onElement)
           
 Actions Actions.clickAndHold(WebElement onElement)
           
 Actions Actions.contextClick(WebElement onElement)
           
 Actions Actions.doubleClick(WebElement onElement)
           
 Actions Actions.dragAndDrop(WebElement source, WebElement target)
           
 Actions Actions.dragAndDropBy(WebElement source, int xOffset, int yOffset)
           
 Actions Actions.keyDown(WebElement element, Keys theKey)
           
 Actions Actions.keyUp(WebElement element, Keys theKey)
           
 Actions Actions.moveToElement(WebElement toElement)
           
 Actions Actions.moveToElement(WebElement toElement, int xOffset, int yOffset)
           
 Actions Actions.release(WebElement onElement)
           
 Actions Actions.sendKeys(WebElement element, CharSequence... keysToSend)
           
 

Uses of WebElement in org.openqa.selenium.internal
 

Methods in org.openqa.selenium.internal that return WebElement
 WebElement FindsByClassName.findElementByClassName(String using)
           
 WebElement FindsByCssSelector.findElementByCssSelector(String using)
           
 WebElement FindsById.findElementById(String using)
           
 WebElement FindsByLinkText.findElementByLinkText(String using)
           
 WebElement FindsByName.findElementByName(String using)
           
 WebElement FindsByLinkText.findElementByPartialLinkText(String using)
           
 WebElement FindsByTagName.findElementByTagName(String using)
           
 WebElement FindsByXPath.findElementByXPath(String using)
           
 WebElement WrapsElement.getWrappedElement()
           
 

Methods in org.openqa.selenium.internal that return types with arguments of type WebElement
 List<WebElement> FindsByClassName.findElementsByClassName(String using)
           
 List<WebElement> FindsByCssSelector.findElementsByCssSelector(String using)
           
 List<WebElement> FindsById.findElementsById(String using)
           
 List<WebElement> FindsByLinkText.findElementsByLinkText(String using)
           
 List<WebElement> FindsByName.findElementsByName(String using)
           
 List<WebElement> FindsByLinkText.findElementsByPartialLinkText(String using)
           
 List<WebElement> FindsByTagName.findElementsByTagName(String using)
           
 List<WebElement> FindsByXPath.findElementsByXPath(String using)
           
 



Copyright © 2011. All Rights Reserved.