Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
package com.github.markusbernhardt.selenium2library.keywords;
import org.openqa.selenium.JavascriptExecutor;
import org.robotframework.javalib.annotation.ArgumentNames;
import org.robotframework.javalib.annotation.Autowired;
import org.robotframework.javalib.annotation.RobotKeyword;
import org.robotframework.javalib.annotation.RobotKeywordOverload;
import org.robotframework.javalib.annotation.RobotKeywords;
import com.github.markusbernhardt.selenium2library.RunOnFailureKeywordsAdapter;
import com.github.markusbernhardt.selenium2library.Selenium2LibraryNonFatalException;
import com.github.markusbernhardt.selenium2library.utils.Robotframework;
@RobotKeywords
public class Waiting extends RunOnFailureKeywordsAdapter {
/**
* Instantiated BrowserManagement keyword bean
*/
@Autowired
protected BrowserManagement browserManagement;
/**
* Instantiated Element keyword bean
*/
@Autowired
protected Element element;
// ##############################
// Keywords
// ##############################
@RobotKeywordOverload
public void waitForCondition(String condition) {
waitForCondition(condition, null);
}
@RobotKeywordOverload
public void waitForCondition(String condition, String timeout) {
waitForCondition(condition, timeout, null);
}
/**
* Waits until the given JavaScript condition is true.
*
* Fails, if the timeout expires, before the condition gets true.
*
* The condition may contain multiple JavaScript statements, but the last
* statement must return a boolean. Otherwise this keyword will always hit
* the timeout.
*
* Note that by default the code will be executed in the context of the
* Selenium object itself, so this will refer to the Selenium object.
* Use window to refer to the window of your application, e.g.
* window.document.getElementById('foo').
*
* See `Introduction` for details about timeouts.
*
* @param condition
* The JavaScript condition returning a boolean.
* @param timeout
* Default=NONE. Optional timeout interval.
* @param message
* Default=NONE. Optional custom error message.
*/
@RobotKeyword
@ArgumentNames({ "condition", "timeout=NONE", "message=NONE" })
public void waitForCondition(final String condition, String timeout, String message) {
if (message == null) {
message = String.format("Condition '%s' did not become true in ", condition);
}
waitUntil(timeout, message, new WaitUntilFunction() {
@Override
public boolean isFinished() {
return Boolean.TRUE.equals(((JavascriptExecutor) browserManagement.getCurrentWebDriver())
.executeScript(condition));
}
});
}
@RobotKeywordOverload
public void waitUntilPageContains(String condition) {
waitUntilPageContains(condition, null);
}
@RobotKeywordOverload
public void waitUntilPageContains(String condition, String timeout) {
waitUntilPageContains(condition, timeout, null);
}
/**
* Waits until the current page contains text.
*
* Fails, if the timeout expires, before the text appears.
*
* See `Introduction` for details about timeouts.
*
* @param text
* The text to verify.
* @param timeout
* Default=NONE. Optional timeout interval.
* @param message
* Default=NONE. Optional custom error message.
*/
@RobotKeyword
@ArgumentNames({ "condition", "timeout=NONE", "message=NONE" })
public void waitUntilPageContains(final String text, String timeout, String message) {
if (message == null) {
message = String.format("Text '%s' did not appear in ", text);
}
waitUntil(timeout, message, new WaitUntilFunction() {
@Override
public boolean isFinished() {
return element.isTextPresent(text);
}
});
}
@RobotKeywordOverload
public void waitUntilPageNotContains(String condition, String timeout) {
waitUntilPageNotContains(condition, timeout, null);
}
@RobotKeywordOverload
public void waitUntilPageNotContains(String condition) {
waitUntilPageNotContains(condition, null);
}
/**
* Waits until the current page does not contain text.
*
* Fails, if the timeout expires, before the text disappears.
*
* See `Introduction` for details about timeouts.
*
* @param text
* The text to verify.
* @param timeout
* Default=NONE. Optional timeout interval.
* @param message
* Default=NONE. Optional custom error message.
*/
@RobotKeyword
@ArgumentNames({ "text", "timeout=NONE", "message=NONE" })
public void waitUntilPageNotContains(final String text, String timeout, String message) {
if (message == null) {
message = String.format("Text '%s' did not disappear in ", text);
}
waitUntil(timeout, message, new WaitUntilFunction() {
@Override
public boolean isFinished() {
return !element.isTextPresent(text);
}
});
}
@RobotKeywordOverload
public void waitUntilPageContainsElement(String condition) {
waitUntilPageContainsElement(condition, null);
}
@RobotKeywordOverload
public void waitUntilPageContainsElement(String condition, String timeout) {
waitUntilPageContainsElement(condition, timeout, null);
}
/**
* Waits until the element identified by locator is found on the
* current page.
*
* Fails, if the timeout expires, before the element appears.
*
* See `Introduction` for details about locators and timeouts.
*
* @param locator
* The locator to locate the element.
* @param timeout
* Default=NONE. Optional timeout interval.
* @param message
* Default=NONE. Optional custom error message.
*/
@RobotKeyword
@ArgumentNames({ "locator", "timeout=NONE", "message=NONE" })
public void waitUntilPageContainsElement(final String locator, String timeout, String message) {
if (message == null) {
message = String.format("Element '%s' did not appear in ", locator);
}
waitUntil(timeout, message, new WaitUntilFunction() {
@Override
public boolean isFinished() {
return element.isElementPresent(locator);
}
});
}
@RobotKeywordOverload
public void waitUntilPageNotContainsElement(String locator) {
waitUntilPageNotContainsElement(locator, null);
}
@RobotKeywordOverload
public void waitUntilPageNotContainsElement(String locator, String timeout) {
waitUntilPageNotContainsElement(locator, timeout, null);
}
/**
* Waits until the element identified by locator is not found on the
* current page.
*
* Fails, if the timeout expires, before the element disappears.
*
* See `Introduction` for details about locators and timeouts.
*
* @param locator
* The locator to locate the element.
* @param timeout
* Default=NONE. Optional timeout interval.
* @param message
* Default=NONE. Optional custom error message.
*/
@RobotKeyword
@ArgumentNames({ "locator", "timeout=NONE", "message=NONE" })
public void waitUntilPageNotContainsElement(final String locator, String timeout, String message) {
if (message == null) {
message = String.format("Element '%s' did not disappear in ", locator);
}
waitUntil(timeout, message, new WaitUntilFunction() {
@Override
public boolean isFinished() {
return !element.isElementPresent(locator);
}
});
}
@RobotKeywordOverload
public void waitUntilElementIsVisible(String locator, String timeout) {
waitUntilElementIsVisible(locator, timeout, null);
}
@RobotKeywordOverload
public void waitUntilElementIsVisible(String locator) {
waitUntilElementIsVisible(locator, null);
}
/**
* Waits until the element identified by locator is visible.
*
* Fails, if the timeout expires, before the element gets visible.
*
* See `Introduction` for details about locators and timeouts.
*
* @param locator
* The locator to locate the element.
* @param timeout
* Default=NONE. Optional timeout interval.
* @param message
* Default=NONE. Optional custom error message.
*/
@RobotKeyword
@ArgumentNames({ "locator", "timeout=NONE", "message=NONE" })
public void waitUntilElementIsVisible(final String locator, String timeout, String message) {
if (message == null) {
message = String.format("Element '%s' not visible in ", locator);
}
waitUntil(timeout, message, new WaitUntilFunction() {
@Override
public boolean isFinished() {
return element.isVisible(locator);
}
});
}
@RobotKeywordOverload
public void waitUntilElementIsNotVisible(String locator, String timeout) {
waitUntilElementIsNotVisible(locator, timeout, null);
}
@RobotKeywordOverload
public void waitUntilElementIsNotVisible(String locator) {
waitUntilElementIsNotVisible(locator, null);
}
/**
* Waits until the element identified by locator is not visible.
*
* Fails, if the timeout expires, before the element gets invisible.
*
* See `Introduction` for details about locators and timeouts.
*
* @param locator
* The locator to locate the element.
* @param timeout
* Default=NONE. Optional timeout interval.
* @param message
* Default=NONE. Optional custom error message.
*/
@RobotKeyword
@ArgumentNames({ "locator", "timeout=NONE", "message=NONE" })
public void waitUntilElementIsNotVisible(final String locator, String timeout, String message) {
if (message == null) {
message = String.format("Element '%s' still visible in ", locator);
}
waitUntil(timeout, message, new WaitUntilFunction() {
@Override
public boolean isFinished() {
return !element.isVisible(locator);
}
});
}
@RobotKeywordOverload
public void waitUntilElementIsClickable(String locator) {
waitUntilElementIsClickable(locator, null, null);
}
@RobotKeywordOverload
public void waitUntilElementIsClickable(String locator, String timeout) {
waitUntilElementIsClickable(locator, timeout, null);
}
/**
* Waits until the element identified by locator is clickable.
*
* Fails, if the timeout expires, before the element gets clickable.
*
* See `Introduction` for details about locators and timeouts.
*
* @param locator
* The locator to locate the element.
* @param timeout
* Default=NONE. Optional timeout interval.
* @param message
* Default=NONE. Optional custom error message.
*/
@RobotKeyword
@ArgumentNames({ "locator", "timeout=NONE", "message=NONE" })
public void waitUntilElementIsClickable(final String locator, String timeout, String message) {
if (message == null) {
message = String.format("Element '%s' not clickable in ", locator);
}
waitUntil(timeout, message, new WaitUntilFunction() {
@Override
public boolean isFinished() {
return element.isClickable(locator);
}
});
}
@RobotKeywordOverload
public void waitUntilElementIsNotClickable(String locator, String timeout) {
waitUntilElementIsNotClickable(locator, timeout, null);
}
@RobotKeywordOverload
public void waitUntilElementIsNotClickable(String locator) {
waitUntilElementIsNotClickable(locator, null);
}
/**
* Waits until the element identified by locator is not clickable.
*
* Fails, if the timeout expires, before the element gets unclickable.
*
* See `Introduction` for details about locators and timeouts.
*
* @param locator
* The locator to locate the element.
* @param timeout
* Default=NONE. Optional timeout interval.
* @param message
* Default=NONE. Optional custom error message.
*/
@RobotKeyword
@ArgumentNames({ "locator", "timeout=NONE", "message=NONE" })
public void waitUntilElementIsNotClickable(final String locator, String timeout, String message) {
if (message == null) {
message = String.format("Element '%s' still clickable in ", locator);
}
waitUntil(timeout, message, new WaitUntilFunction() {
@Override
public boolean isFinished() {
return !element.isClickable(locator);
}
});
}
@RobotKeywordOverload
public void waitUntilElementIsSuccessfullyClicked(String locator, String timeout) {
waitUntilElementIsSuccessfullyClicked(locator, timeout, null);
}
@RobotKeywordOverload
public void waitUntilElementIsSuccessfullyClicked(String locator) {
waitUntilElementIsSuccessfullyClicked(locator, null);
}
/**
* Waits until the element identified by locator is sucessfully
* clicked on.
*
* Fails, if the timeout expires, before the element gets clicked on.
*
* See `Introduction` for details about locators and timeouts.
*
* @param locator
* The locator to locate the element.
* @param timeout
* Default=NONE. Optional timeout interval.
* @param message
* Default=NONE. Optional custom error message.
*/
@RobotKeyword
@ArgumentNames({ "locator", "timeout=NONE", "message=NONE" })
public void waitUntilElementIsSuccessfullyClicked(final String locator, String timeout, String message) {
if (message == null) {
message = String.format("Element '%s' not successfully clicked in ", locator);
}
waitUntil(timeout, message, new WaitUntilFunction() {
@Override
public boolean isFinished() {
element.clickElement(locator);
return true;
}
});
}
@RobotKeywordOverload
public void waitUntilElementIsSelected(String locator, String timeout) {
waitUntilElementIsSelected(locator, timeout, null);
}
@RobotKeywordOverload
public void waitUntilElementIsSelected(String locator) {
waitUntilElementIsSelected(locator, null);
}
/**
* Waits until the element identified by locator is selected.
*
* Fails, if the timeout expires, before the element gets selected.
*
* See `Introduction` for details about locators and timeouts.
*
* @param locator
* The locator to locate the element.
* @param timeout
* Default=NONE. Optional timeout interval.
* @param message
* Default=NONE. Optional custom error message.
*/
@RobotKeyword
@ArgumentNames({ "locator", "timeout=NONE", "message=NONE" })
public void waitUntilElementIsSelected(final String locator, String timeout, String message) {
if (message == null) {
message = String.format("Element '%s' not selected in ", locator);
}
waitUntil(timeout, message, new WaitUntilFunction() {
@Override
public boolean isFinished() {
return element.isSelected(locator);
}
});
}
@RobotKeywordOverload
public void waitUntilElementIsNotSelected(String locator, String timeout) {
waitUntilElementIsNotSelected(locator, timeout, null);
}
@RobotKeywordOverload
public void waitUntilElementIsNotSelected(String locator) {
waitUntilElementIsNotSelected(locator, null);
}
/**
* Waits until the element identified by locator is not selected.
*
* Fails, if the timeout expires, before the element gets unselected.
*
* See `Introduction` for details about locators and timeouts.
*
* @param locator
* The locator to locate the element.
* @param timeout
* Default=NONE. Optional timeout interval.
* @param message
* Default=NONE. Optional custom error message.
*/
@RobotKeyword
@ArgumentNames({ "locator", "timeout=NONE", "message=NONE" })
public void waitUntilElementIsNotSelected(final String locator, String timeout, String message) {
if (message == null) {
message = String.format("Element '%s' still selected in ", locator);
}
waitUntil(timeout, message, new WaitUntilFunction() {
@Override
public boolean isFinished() {
return !element.isSelected(locator);
}
});
}
@RobotKeywordOverload
public void waitUntilTitleContains(String title, String timeout) {
waitUntilTitleContains(title, timeout, null);
}
@RobotKeywordOverload
public void waitUntilTitleContains(String title) {
waitUntilTitleContains(title, null, null);
}
/**
* Waits until the current page title contains title.
*
* Fails, if the timeout expires, before the page title contains the given
* title.
*
* @param title
* The title to verify.
* @param timeout
* Default=NONE. Optional timeout interval.
* @param message
* Default=NONE. Optional custom error message.
*/
@RobotKeyword
@ArgumentNames({ "title", "timeout=NONE", "message=NONE" })
public void waitUntilTitleContains(final String title, String timeout, String message) {
if (message == null) {
message = String.format("Title '%s' did not appear in ", title);
}
waitUntil(timeout, message, new WaitUntilFunction() {
@Override
public boolean isFinished() {
String currentTitle = browserManagement.getTitle();
return currentTitle != null && currentTitle.contains(title);
}
});
}
@RobotKeywordOverload
public void waitUntilTitleNotContains(String title, String timeout) {
waitUntilTitleNotContains(title, timeout, null);
}
@RobotKeywordOverload
public void waitUntilTitleNotContains(String title) {
waitUntilTitleNotContains(title, null, null);
}
/**
* Waits until the current page title does not contain title.
*
* Fails, if the timeout expires, before the page title does not contain the
* given title.
*
* @param title
* The title to verify.
* @param timeout
* Default=NONE. Optional timeout interval.
* @param message
* Default=NONE. Optional custom error message.
*/
@RobotKeyword
@ArgumentNames({ "title", "timeout=NONE", "message=NONE" })
public void waitUntilTitleNotContains(final String title, String timeout, String message) {
if (message == null) {
message = String.format("Title '%s' did not appear in ", title);
}
waitUntil(timeout, message, new WaitUntilFunction() {
@Override
public boolean isFinished() {
String currentTitle = browserManagement.getTitle();
return currentTitle == null || !currentTitle.contains(title);
}
});
}
@RobotKeywordOverload
public void waitUntilTitleIs(String title, String timeout) {
waitUntilTitleIs(title, timeout, null);
}
@RobotKeywordOverload
public void waitUntilTitleIs(String title) {
waitUntilTitleIs(title, null);
}
/**
* Waits until the current page title is exactly title.
*
* Fails, if the timeout expires, before the page title matches the given
* title.
*
* @param title
* The title to verify.
* @param timeout
* Default=NONE. Optional timeout interval.
* @param message
* Default=NONE. Optional custom error message.
*/
@RobotKeyword
@ArgumentNames({ "title", "timeout=NONE", "message=NONE" })
public void waitUntilTitleIs(final String title, String timeout, String message) {
if (message == null) {
message = String.format("Title '%s' did not appear in ", title);
}
waitUntil(timeout, message, new WaitUntilFunction() {
@Override
public boolean isFinished() {
String currentTitle = browserManagement.getTitle();
return currentTitle != null && currentTitle.equals(title);
}
});
}
@RobotKeywordOverload
public void waitUntilTitleIsNot(String title, String timeout) {
waitUntilTitleIsNot(title, timeout, null);
}
@RobotKeywordOverload
public void waitUntilTitleIsNot(String title) {
waitUntilTitleIsNot(title, null, null);
}
/**
* Waits until the current page title is not exactly title.
*
* Fails, if the timeout expires, before the page title does not match the
* given title.
*
* @param title
* The title to verify.
* @param timeout
* Default=NONE. Optional timeout interval.
* @param message
* Default=NONE. Optional custom error message.
*/
@RobotKeyword
@ArgumentNames({ "title", "timeout=NONE", "message=NONE" })
public void waitUntilTitleIsNot(final String title, String timeout, String message) {
if (message == null) {
message = String.format("Title '%s' did not appear in ", title);
}
waitUntil(timeout, message, new WaitUntilFunction() {
@Override
public boolean isFinished() {
String currentTitle = browserManagement.getTitle();
return currentTitle == null || !currentTitle.equals(title);
}
});
}
// ##############################
// Internal Methods
// ##############################
protected void waitUntil(String timestr, String message, WaitUntilFunction function) {
double timeout = timestr != null ? Robotframework.timestrToSecs(timestr) : browserManagement.getTimeout();
message = message.replace("", Robotframework.secsToTimestr(timeout));
long maxtime = System.currentTimeMillis() + (long) (timeout * 1000);
for (;;) {
try {
if (function.isFinished()) {
break;
}
} catch (Throwable t) {
}
if (System.currentTimeMillis() > maxtime) {
throw new Selenium2LibraryNonFatalException(message);
}
try {
Thread.sleep(200);
} catch (InterruptedException e) {
}
}
}
protected static interface WaitUntilFunction {
boolean isFinished();
}
}