2015年8月27日 星期四

Class ExpectedConditions

    • Method Detail

      • titleIs

        public static ExpectedCondition<java.lang.Boolean> titleIs(java.lang.String title)
        An expectation for checking the title of a page.
        Parameters:
        title - the expected title, which must be an exact match
        Returns:
        true when the title matches, false otherwise
      • titleContains

        public static ExpectedCondition<java.lang.Boolean> titleContains(java.lang.String title)
        An expectation for checking that the title contains a case-sensitive substring
        Parameters:
        title - the fragment of title expected
        Returns:
        true when the title matches, false otherwise
      • presenceOfElementLocated

        public static ExpectedCondition<WebElement> presenceOfElementLocated(By locator)
        An expectation for checking that an element is present on the DOM of a page. This does not necessarily mean that the element is visible.
        Parameters:
        locator - used to find the element
        Returns:
        the WebElement once it is located
      • visibilityOfElementLocated

        public static ExpectedCondition<WebElement> visibilityOfElementLocated(By locator)
        An expectation for checking that an element is present on the DOM of a page and visible. Visibility means that the element is not only displayed but also has a height and width that is greater than 0.
        Parameters:
        locator - used to find the element
        Returns:
        the WebElement once it is located and visible
      • visibilityOfAllElementsLocatedBy

        public static ExpectedCondition<java.util.List<WebElement>> visibilityOfAllElementsLocatedBy(By locator)
        An expectation for checking that all elements present on the web page that match the locator are visible. Visibility means that the elements are not only displayed but also have a height and width that is greater than 0.
        Parameters:
        locator - used to find the element
        Returns:
        the list of WebElements once they are located
      • visibilityOfAllElements

        public static ExpectedCondition<java.util.List<WebElement>> visibilityOfAllElements(java.util.List<WebElement> elements)
        An expectation for checking that all elements present on the web page that match the locator are visible. Visibility means that the elements are not only displayed but also have a height and width that is greater than 0.
        Parameters:
        elements - list of WebElements
        Returns:
        the list of WebElements once they are located
      • visibilityOf

        public static ExpectedCondition<WebElement> visibilityOf(WebElement element)
        An expectation for checking that an element, known to be present on the DOM of a page, is visible. Visibility means that the element is not only displayed but also has a height and width that is greater than 0.
        Parameters:
        element - the WebElement
        Returns:
        the (same) WebElement once it is visible
      • presenceOfAllElementsLocatedBy

        public static ExpectedCondition<java.util.List<WebElement>> presenceOfAllElementsLocatedBy(By locator)
        An expectation for checking that there is at least one element present on a web page.
        Parameters:
        locator - used to find the element
        Returns:
        the list of WebElements once they are located
      • textToBePresentInElement

        public static ExpectedCondition<java.lang.Boolean> textToBePresentInElement(WebElement element,
                                                                                    java.lang.String text)
        An expectation for checking if the given text is present in the specified element.
        Parameters:
        element - the WebElement
        text - to be present in the element
        Returns:
        true once the element contains the given text
      • textToBePresentInElement

        @Deprecated
        public static ExpectedCondition<java.lang.Boolean> textToBePresentInElement(By locator,
                                                                                                java.lang.String text)
        An expectation for checking if the given text is present in the element that matches the given locator.
        Parameters:
        locator - used to find the element
        text - to be present in the element found by the locator
        Returns:
        the WebElement once it is located and visible
      • textToBePresentInElementLocated

        public static ExpectedCondition<java.lang.Boolean> textToBePresentInElementLocated(By locator,
                                                                                           java.lang.String text)
        An expectation for checking if the given text is present in the element that matches the given locator.
        Parameters:
        locator - used to find the element
        text - to be present in the element found by the locator
        Returns:
        true once the first element located by locator contains the given text
      • textToBePresentInElementValue

        public static ExpectedCondition<java.lang.Boolean> textToBePresentInElementValue(WebElement element,
                                                                                         java.lang.String text)
        An expectation for checking if the given text is present in the specified elements value attribute.
        Parameters:
        element - the WebElement
        text - to be present in the element's value attribute
        Returns:
        true once the element's value attribute contains the given text
      • textToBePresentInElementValue

        public static ExpectedCondition<java.lang.Boolean> textToBePresentInElementValue(By locator,
                                                                                         java.lang.String text)
        An expectation for checking if the given text is present in the specified elements value attribute.
        Parameters:
        locator - used to find the element
        text - to be present in the value attribute of the element found by the locator
        Returns:
        true once the value attribute of the first element located by locator contains the given text
      • frameToBeAvailableAndSwitchToIt

        public static ExpectedCondition<WebDriver> frameToBeAvailableAndSwitchToIt(java.lang.String frameLocator)
        An expectation for checking whether the given frame is available to switch to.If the frame is available it switches the given driver to the specified frame.
        Parameters:
        frameLocator - used to find the frame (id or name)
      • frameToBeAvailableAndSwitchToIt

        public static ExpectedCondition<WebDriver> frameToBeAvailableAndSwitchToIt(By locator)
        An expectation for checking whether the given frame is available to switch to.If the frame is available it switches the given driver to the specified frame.
        Parameters:
        locator - used to find the frame
      • invisibilityOfElementLocated

        public static ExpectedCondition<java.lang.Boolean> invisibilityOfElementLocated(By locator)
        An expectation for checking that an element is either invisible or not present on the DOM.
        Parameters:
        locator - used to find the element
      • invisibilityOfElementWithText

        public static ExpectedCondition<java.lang.Boolean> invisibilityOfElementWithText(By locator,
                                                                                         java.lang.String text)
        An expectation for checking that an element with text is either invisible or not present on the DOM.
        Parameters:
        locator - used to find the element
        text - of the element
      • elementToBeClickable

        public static ExpectedCondition<WebElement> elementToBeClickable(By locator)
        An expectation for checking an element is visible and enabled such that you can click it.
        Parameters:
        locator - used to find the element
        Returns:
        the WebElement once it is located and clickable (visible and enabled)
      • elementToBeClickable

        public static ExpectedCondition<WebElement> elementToBeClickable(WebElement element)
        An expectation for checking an element is visible and enabled such that you can click it.
        Parameters:
        element - the WebElement
        Returns:
        the (same) WebElement once it is clickable (visible and enabled)
      • stalenessOf

        public static ExpectedCondition<java.lang.Boolean> stalenessOf(WebElement element)
        Wait until an element is no longer attached to the DOM.
        Parameters:
        element - The element to wait for.
        Returns:
        false is the element is still attached to the DOM, true otherwise.
      • refreshed

        public static <T> ExpectedCondition<T> refreshed(ExpectedCondition<T> condition)
        Wrapper for a condition, which allows for elements to update by redrawing. This works around the problem of conditions which have two parts: find an element and then check for some condition on it. For these conditions it is possible that an element is located and then subsequently it is redrawn on the client. When this happens a StaleElementReferenceException is thrown when the second part of the condition is checked.
      • elementToBeSelected

        public static ExpectedCondition<java.lang.Boolean> elementToBeSelected(WebElement element)
        An expectation for checking if the given element is selected.
      • elementSelectionStateToBe

        public static ExpectedCondition<java.lang.Boolean> elementSelectionStateToBe(WebElement element,
                                                                                     boolean selected)
        An expectation for checking if the given element is selected.
      • elementToBeSelected

        public static ExpectedCondition<java.lang.Boolean> elementToBeSelected(By locator)
      • elementSelectionStateToBe

        public static ExpectedCondition<java.lang.Boolean> elementSelectionStateToBe(By locator,
                                                                                     boolean selected)
      • not

        public static ExpectedCondition<java.lang.Boolean> not(ExpectedCondition<?> condition)
        An expectation with the logical opposite condition of the given condition.

reference : http://selenium.googlecode.com/git/docs/api/java/org/openqa/selenium/support/ui/ExpectedConditions.html

沒有留言:

張貼留言