All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.arquillian.graphene.wait.FluentWait Maven / Gradle / Ivy

There is a newer version: 3.0.0-alpha.4
Show newest version
/**
 * JBoss, Home of Professional Open Source
 * Copyright 2013, Red Hat, Inc. and individual contributors
 * by the @authors tag. See the copyright.txt in the distribution for a
 * full listing of individual contributors.
 *
 * This is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this software; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 */
package org.jboss.arquillian.graphene.wait;

import java.util.Collection;
import java.util.concurrent.TimeUnit;

import org.jboss.arquillian.graphene.fluent.FluentBase;
import org.openqa.selenium.support.ui.Wait;

/**
 * This interface is a replication of
 * {@link org.openqa.selenium.support.ui.FluentWait}. It's here because of a
 * fluent API in Graphene.
 *
 * @param  The input type for each condition used with this instance.
 * @param  The type of value returned in the end of fluent chain.
 * @author Jan Papousek
 */
public interface FluentWait extends Wait, FluentBase {

    /**
     * Sets the message to be displayed when time expires.
     *
     * @param message to be appended to default.
     * @return A self reference.
     */
    FluentWait withMessage(String message);

    /**
     * Sets how long to wait for the evaluated condition to be true. The default
     * timeout is 500ms.
     *
     * @param duration The timeout duration.
     * @param unit The unit of time.
     * @return A self reference.
     */
    FluentWait withTimeout(long duration, TimeUnit unit);

    /**
     * Sets how often the condition should be evaluated.
     *
     * 

In reality, the interval may be greater as the cost of actually * evaluating a condition function is not factored in. The default polling * interval is 500ms. * * @param duration The timeout duration. * @param unit The unit of time. * @return A self reference. */ FluentWait pollingEvery(long duration, TimeUnit unit); /** * Configures this instance to ignore specific types of exceptions while * waiting for a condition. Any exceptions not whitelisted will be allowed * to propagate, terminating the wait. * * @param types The types of exceptions to ignore. * @return A self reference. */ FluentWait ignoreAll(Collection> types); /** * @see #ignoreAll(Collection) */ FluentWait ignoring(Class exceptionType); /** * @see #ignoreAll(Collection) */ FluentWait ignoring(Class firstType, Class secondType); /** * Returns the fluent condition builder. The builder automatically calls {@link #commit(java.lang.Object) } * which calls {@link #until(com.google.common.base.Predicate) }. */ FluentBuilder until(); /** * Returns the fluent condition builder. The builder automatically calls {@link #commit(java.lang.Object)} * which calls {@link #until(com.google.common.base.Predicate) }. * * @param failMessage message used when the waiting fails */ FluentBuilder until(String failMessage); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy