org.jboss.arquillian.ajocado.waiting.ajax.AjaxWaiting Maven / Gradle / Ivy
Show all versions of graphene-selenium-impl Show documentation
/**
* JBoss, Home of Professional Open Source
* Copyright 2011, 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.ajocado.waiting.ajax;
import org.jboss.arquillian.ajocado.waiting.Waiting;
/**
*
* Implementation of waiting for satisfaction of conditions on page after the Ajax request.
*
*
*
* It uses custom JavaScript and com.thoughtworks.selenium.Selenium.Selenium#waitForCondition(String, String) to wait for
* satisfying given condition.
*
*
* @author Lukas Fryc
* @version $Revision$
*/
public interface AjaxWaiting extends Waiting {
/**
* Stars loop waiting to satisfy condition.
*
* @param condition what wait for to be satisfied
*/
void until(JavaScriptCondition condition);
/**
* Waits until Retrieve's implementation doesn't retrieve value other than oldValue.
*
* @param type of value what we are waiting for change
* @param oldValue value that we are waiting for change
* @param retriever implementation of retrieving actual value
*/
void waitForChange(T oldValue, JavaScriptRetriever retriever);
/**
*
* Waits until Retrieve's implementation doesn't retrieve value other than value stored by initialization in retriever.
*
*
*
* After retrieving, new value will be associated with given Retriever.
*
*
*
*
* Note that Retriever needs to be initialized first by one of methods
* {@link org.jboss.arquillian.ajocado.waiting.retrievers.Retriever#initializeValue()} or
* {@link org.jboss.arquillian.ajocado.waiting.retrievers.Retriever#setValue(Object)} .
*
*
* @param type of value what we are waiting for change
* @param retriever implementation of retrieving actual value
*/
void waitForChange(JavaScriptRetriever retriever);
/**
* Waits until Retrieve's implementation doesn't retrieve value other than oldValue and this new value returns.
*
* @param type of value what we are waiting for change
* @param oldValue value that we are waiting for change
* @param retriever implementation of retrieving actual value
* @return new retrieved value
*/
T waitForChangeAndReturn(T oldValue, JavaScriptRetriever retriever);
/**
*
* Waits until Retrieve's implementation doesn't retrieve value other than value stored by initialization in retriever.
*
*
*
* After retrieving, new value will be associated with given Retriever.
*
*
*
*
* Note that Retriever needs to be initialized first by one of methods
* {@link org.jboss.arquillian.ajocado.waiting.retrievers.Retriever#initializeValue()} or
* {@link org.jboss.arquillian.ajocado.waiting.retrievers.Retriever#setValue(Object)} .
*
*
* @param type of value what we are waiting for change
* @param retriever implementation of retrieving actual value
* @return new retrieved value
*/
T waitForChangeAndReturn(JavaScriptRetriever retriever);
}