com.slickqa.webdriver.WebDriverWrapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of slick-webdriver-java Show documentation
Show all versions of slick-webdriver-java Show documentation
This is a wrapper and utilities for using webdriver / selenium in Java.
package com.slickqa.webdriver;
import org.openqa.selenium.Cookie;
import org.openqa.selenium.JavascriptExecutor;
import org.openqa.selenium.WebDriver;
import java.util.List;
import java.util.Set;
/**
* This is a wrapper api for performing tasks on web driver browsers. Included in this interface are the methods that
* are needed for performing actions on web pages.
*
* @author jcorbett
*/
public interface WebDriverWrapper
{
/**
* Set the default timeout for the wrapper. This affects all calls, as by default this api waits for an element
* to exist before trying to perform an action on it.
*
* @param timeout The amount of time to wait for elements in seconds.
*/
void setDefaultTimeout(int timeout);
/**
* Clear the text on web page element, waiting a maximum of the default timeout for the element to exist.
*
* @param locator The page element instance that describes how to find the element to clear the text on.
*/
void clear(PageElement locator);
/**
* Clear the text web page element, waiting a maximum of the amount of time passed in for the element to exist.
*
* @param locator The page element instance that describes how to find the element to clear the text on.
* @param timeout The maximum amount of time to wait for the element to exist in seconds.
*/
void clear(PageElement locator, int timeout);
/**
* Click on a web page element, waiting a maximum of the default timeout for the element to exist.
*
* @param locator The page element instance that describes how to find the element to click.
*/
void click(PageElement locator);
/**
* Click on a web page element, waiting a maximum of the amount of time passed in for the element to exist.
*
* @param locator The page element instance that describes how to find the element to click.
* @param timeout The maximum amount of time to wait for the element to exist in seconds.
*/
void click(PageElement locator, int timeout);
/**
* Click on a hidden web page element, waiting a maximum of the default timeout for the element to exist.
* Occassionally there are elements that you are unable to access and as a last resort you can use this method.
* It essentially uses a JavaScriptExecutor instance to click on the element.
*
* @param locator The page element instance that describes how to find the element to click.
*/
void clickHiddenElement(PageElement locator);
/**
* Click on a hidden web page element, waiting a maximum of the amount of time passed in for the element to exist.
* Occassionally there are elements that you are unable to access and as a last resort you can use this method.
* It essentially uses a JavaScriptExecutor instance to click on the element.
*
* @param locator The hiddent page element instance that describes how to find the element to click.
* @param timeout The maximum amount of time to wait for the element to exist in seconds.
*/
void clickHiddenElement(PageElement locator, int timeout);
/**
* Double click on a web page element, waiting a maximum of the default timeout for the element to exist.
*
* @param locator The page element instance that describes how to find the element to click.
*/
void doubleClick(PageElement locator);
/**
* Double click on a web page element, waiting a maximum of the amount of time passed in for the element to exist.
*
* @param locator The page element instance that describes how to find the element to click.
* @param timeout The maximum amount of time to wait for the element to exist in seconds.
*/
void doubleClick(PageElement locator, int timeout);
/**
* Submit a web page element (calls the submit method), waiting a maximum of the default timeout for the element to exist.
*
* @param locator The page element instance that describes how to find the element to submit.
*/
void submit(PageElement locator);
/**
* Submit a web page element (calls the submit method), waiting a maximum of the amount of time passed in for the element to exist.
*
* @param locator The page element instance that describes how to find the element to submit.
* @param timeout The maximum amount of time to wait for the element to exist in seconds.
*/
void submit(PageElement locator, int timeout);
/**
* Type text in an element in a page, waiting a maximum of the amount of time passed in for the element to exist.
*
* @param locator The page element instance that describes how to find the element to type in.
* @param text The text to type.
* @param timeout The maximum amount of time to wait for the element to exist in seconds.
*/
void type(PageElement locator, String text, int timeout);
/**
* Type text on an element in a page, waiting a maximum of the default timeout for the element to exist.
*
* @param locator The page element instance that describes how to find the element to type in.
* @param text The text to type.
*/
void type(PageElement locator, String text);
/**
* Get the text of an element, waiting a maximum of the default timeout for the element to exist.
*
* @param locator The page element instance that describes how to find the element to get the text from.
* @return The text contained in the element.
*/
String getText(PageElement locator);
/**
* Get the text of an element, waiting a maximum of the amount of time passed in for the element to exist.
*
* @param locator The page element instance that describes how to find the element to get the text from.
* @param timeout The maximum amount of time to wait for the element to exist in seconds.
* @return The text contained in the element.
*/
String getText(PageElement locator, int timeout);
/**
* Checks whether an input checkbox or radio element is currently selected. If it is not then click on it to select it, waiting a maximum of the default timeout for the element to exist.
*
* @param locator The page element instance that describes how to find the element to get the attribute value from.
*/
void setSelected(PageElement locator);
/**
* Checks whether an input element checkbox or radio element is currently selected. If it is not then click on it to select it, waiting a maximum of the amount of time passed in for the element to exist.
*
* @param locator The page element instance that describes how to find the element to select.
* @param timeout The max amount of time to wait for locator to exist.
*/
void setSelected(PageElement locator, int timeout);
/**
* Checks if an input element of type checkbox or radio is currently selected, waiting a maximum of the default timeout for the element to exist.
*
* @param locator The page element instance that describes how to find the element to select.
* @return true if the checkbox element is selected, false otherwise
*/
boolean isSelected(PageElement locator);
/**
* Check if an input element of type checkbox or radio is selected, waiting a maximum of the time passed in for the element to exist.
*
* @param locator The page element instance that describes how to find the element to check.
* @param timeout The max amount of time to wait for locator to exist.
* @return true if the checkbox element is selected, false otherwise
*/
boolean isSelected(PageElement locator, int timeout);
/**
* Check if an element is enabled, waiting a maximum of the default timeout for the element to exist
*
* @param locator The page element instance that describes how to find the element to check
* @return boolean
*/
boolean isEnabled(PageElement locator);
/**
* Check if an element is enabled, waiting a maximum of the time passed in for the element to exist
*
* @param locator The page element instance that describes how to find the element to check
* @param timeout The maximum amount of time to wait for the element to exist in seconds
* @return boolean
*/
boolean isEnabled(PageElement locator, int timeout);
/**
* Set the state of an input of type checkbox
*
* @param locator The page element instance that describes how to find the element to set
* @param checked True if you want it checked, false otherwise
*/
void setCheckboxState(PageElement locator, boolean checked);
/**
* Set the state of an input of type checkbox
*
* @param locator The page element instance that describes how to find the element to set
* @param checked True if you want it checked, false otherwise
* @param timeout The maximum amount of time to wait for the element to exist in seconds
*/
void setCheckboxState(PageElement locator, boolean checked, int timeout);
/**
* Get the value of an attribute, waiting a maximum of the amount of time passed in for the element to exist.
*
* @param locator The page element instance that describes how to find the element to check.
* @param attribute The name of the attribute to retrieve the value for.
* @return the value of the attribute
*/
String getAttribute(PageElement locator, String attribute);
/**
* Get the value of an attribute, waiting a maximum of the default timeout for the element to exist.
*
* @param locator The page element instance that describes how to find the element to get the attribute value from.
* @param timeout The maximum amount of time to wait for the element to exist in seconds.
* @param attribute The name of the attribute to retrieve the value for.
* @return The value of the attribute.
*/
String getAttribute(PageElement locator, int timeout, String attribute);
/**
* Select an option of a drop down list by providing the text displayed in the list. Wait a maximum of the default
* timeout for the select list to exist.
*
* @param selectList The page element instance that describes how to find the select list.
* @param option The text of the option displayed in the list that you want to select.
*/
void selectByOptionText(PageElement selectList, String option);
/**
* Select an option of a drop down list by providing the text displayed in the list. Wait a maximum of the amount
* of time passed in for the select list to exist.
*
* @param selectList The page element instance that describes how to find the select list.
* @param option The text of the option displayed in the list that you want to select.
* @param timeout The maximum amount of time to wait for the element to exist in seconds.
*/
void selectByOptionText(PageElement selectList, String option, int timeout);
/**
* Select an option of a drop down list by providing the text of the value attribute. Wait a maximum of the default
* timeout for the select list to exist.
*
* @param selectList The page element instance that describes how to find the select list.
* @param optionValue The text of the value attribute of the option you want to select.
*/
void selectByOptionValue(PageElement selectList, String optionValue);
/**
* Select an option of a drop down list by providing the text of the value attribute. Wait a maximum of the amount
* of time passed in for the select list to exist.
*
* @param selectList The page element instance that describes how to find the select list.
* @param optionValue The text of the value attribute of the option you want to select.
* @param timeout The maximum amount of time to wait for the element to exist in seconds.
*/
void selectByOptionValue(PageElement selectList, String optionValue, int timeout);
/**
* Get the title of the current page in the browser.
*
* @return The title of the current page displayed in the browser.
*/
String getPageTitle();
/**
* Get the html source of the current page in the browser.
*
* @return The html source of the current page displayed in the browser.
*/
String getPageSource();
/**
* Get the url of the current page in the browser.
*
* @return The url of the current page displayed in the browser.
*/
String getPageUrl();
/**
* Tell the browser to go to a specific URL.
*
* @param url The url that you want the browser to go to.
*/
void goTo(String url);
/**
* Tell the browser to go back.
*/
void goBack();
/**
* Tell the browser to go forward.
*/
void goForward();
/**
* Get the underlying webdriver object.
*
* @return The webdriver object used by this instance of WebDriverWrapper.
*/
WebDriver getDriver();
/**
* Wait the default timeout for the page that implements SelfAwarePage to exist. Page provided must implement the SelfAwarePage's isCurrentPage
* method.
*
* @param page The class object of the SelfAwarePage to wait for.
*/
void waitFor(Class extends SelfAwarePage> page);
/**
* Wait a max of the provided timeout for the SelfAwarePage to exist. Page provided must implement the SelfAwarePage's isCurrentPage method.
*
* @param page The class object of the SelfAwarePage to wait for.
* @param timeout The amount of time (in seconds) to wait for the page to exist.
*/
void waitFor(Class extends SelfAwarePage> page, int timeout);
/**
* Wait the default timeout for an existing instance of SelfAwarePage to exist. Page provided must implement the SelfAwarePage's isCurrentPage method.
*
* @param page an instance of the page SelfAwarePage
*/
void waitFor(SelfAwarePage page);
/**
* Wait a max of the provided timeout for an existing instance of SelfAwarePage to exist. Page provided must implement the SelfAwarePage's isCurrentPage method.
*
* @param page an instance of the page SelfAwarePage
* @param timeout The amount of time (in seconds) to wait for the page to exist.
*/
void waitFor(SelfAwarePage page, int timeout);
/**
* Wait the default timeout for an instance of InFlow to exist. Page provided must implement the InFlow's isCurrentPage method.
*
* @param page an instance of the page SelfAwarePage
*/
void waitForPageInFlow(InFlow page);
/**
* Wait a max of the provided timeout for an instance of InFlow to exist. Page provided must implement the InFlow's isCurrentPage method.
*
* @param page an instance of the page SelfAwarePage
* @param timeout The amount of time (in seconds) to wait for the page to exist.
*/
void waitForPageInFlow(InFlow page, int timeout);
/**
* Wait for a PageElement to exist a max of the default timeout.
*
* @param element The element to wait for.
*/
void waitFor(PageElement element);
/**
* Wait for a PageElement to exist a max of the provided timeout.
*
* @param element The element to wait for.
* @param timeout The amount of time (in seconds) to wait for the element to exist.
*/
void waitFor(PageElement element, int timeout);
/**
* Wait not only for a PageElement to exist, but for an element to be visible. Use the default timeout.
*
* @param element The element to wait for.
*/
void waitForVisible(PageElement element);
/**
* Wait not only for a PageElement to exist, but for an element to be visible. Use the timeout provided.
*
* @param element The element to wait for.
* @param timeout The maximum amount of time to wait.
*/
void waitForVisible(PageElement element, int timeout);
/**
* Check for the existence of a PageElement. This is a quick check, no waiting is performed.
*
* @param element The PageElement that describes where to find the element.
* @return true if the element exists and is accessible, false otherwise
*/
boolean exists(PageElement element);
/**
* Check for the existence of a PageElement. Waiting the passed in timeout for it to exist.
*
* @param element The PageElement that describes where to find the element.
* @param timeout
* @return true if the element exists and is accessible, false otherwise
*/
boolean exists(PageElement element, int timeout);
/**
* Check for the existence of a SelfAwarePage. This is a non-waiting check, unless the page provided waits for
* elements on the page. This is the same as getting an instance of the page, then calling isCurrentPage.
*
* @param page The class object of the SelfAwarePage to wait for.
* @return the return value of the page's isCurrentPage.
*/
boolean exists(Class extends SelfAwarePage> page);
/**
* "Handle" the page, or call the SelfAwarePage page's handlePage method, passing in the context object provided. This usually
* means filling out a form on the page, or clicking a particular link based on information in the context object.
*
* @param page The page to "handle".
* @param context The context object (type determined by the page class)
* @param The type is determined by the page's handlePage method parameter
* @throws Exception if the page's handlePage throws an exception.
*/
void handlePage(Class extends SelfAwarePage> page, T context) throws Exception;
/**
* "Handle" the page, or call the InFlow page's handlePage method, passing in the context object provided. This usually
* means filling out a form on the page, or clicking a particular link based on information in the context object.
*
* @param page The page to "handle".
* @param context The context object (type determined by the page class)
* @param The type is determined by the page's handlePage method parameter
* @throws Exception if the page's handlePage throws an exception.
*/
void handlePageInFlow(Class extends InFlow> page, T context) throws Exception;
/**
* Check to see if the SelfAwarePage page is the current page
*
* @param page The page class that is to be checked against the current page the browser is on.
* @return true if the page class' isCurrentPage method returns true.
*/
boolean isCurrentPage(Class extends SelfAwarePage> page);
/**
* Get the browser window handle of the current window. This is a non-waiting function.
*
* @return The window handle of the current window.
*/
String getWindowHandle();
/**
* Get a set containing all the browser window handles. This is a non-waiting function.
*
* @return A set containing all the browser window handles.
*/
Set getWindowHandles();
/**
* Switch to the browser window using the specified window handle. The handle can be obtained from getWindowHandle or getWindowHandles
*
* @param windowHandle The handle of the browser window you want to switch to.
*/
void switchToWindowByHandle(String windowHandle);
/**
* Switch to the browser window that contains the partial URL string. Wait a maximum of the default
* timeout for the select list to exist.
*
* @param partialWindowURL Part of the url of the browser window you want to switch to.
*/
void switchToWindowByURLContains(String partialWindowURL);
/**
* Switch to the browser window that contains the partial URL string. Wait the specified timeout
* for the switch to window to be successful
* @param windowURL Part of the url of the browser window you want to switch to.
* @param timeout The maximum amount of time to wait for the element to exist in seconds.
*/
void switchToWindowByURLContains(String windowURL, int timeout);
/**
* Switch to the browser window that contains the specified URL or partial URL. Wait a maximum of the default
* timeout for the select list to exist.
* @param windowURL The url of the browser window you want to switch to.
*/
void switchToWindowByURL(String windowURL);
/**
* Switch to the browser window that contains the specified URL or partial URL. Wait the specified timeout
* for the switch to window to be successful
* @param windowURL The url of the browser window you want to switch to.
* @param timeout The maximum amount of time to wait for the element to exist in seconds.
*/
void switchToWindowByURL(String windowURL, int timeout);
/**
* Closes the current browser window. This is a non-waiting function.
*/
void closeWindow();
/**
* Closes the the specified browser window. This is a non-waiting function, the window must currently exist.
* @param windowHandle The windowHandle to switch to and close. You can use the getWindowHandle function to get this handle.
*/
void closeWindow(String windowHandle);
/**
* Checks whether the specified PageElement is visible. This is a non-waiting function, the page element must currently exist.
*
* @param locator The page element to check visibility on
* @return true if the element is visible, false otherwise
*/
boolean isVisible(PageElement locator);
/**
* Checks whether the specified PageElement is visible. This is a non-waiting function, the page element must currently exist.
*
* @param locator The page element to check visibility on
* @param timeout time to wait for the element to be visible
* @return true if the element is visible, false otherwise
*/
boolean isVisible(PageElement locator, int timeout);
/**
* Take a screenshot, naming it automatically. This will be placed in the testcase's log directory.
*/
void takeScreenShot();
/**
* Take a screenshot, naming it with the provided name. If ".png" is not at the end of the filename it will be
* added. Also a number may be attached to help keep order.
*
* @param name The name to give to the screenshot file
*/
void takeScreenShot(String name);
/**
* Saves the current page HTML source to a file, naming the file automatically. This will be placed in the testcase's log directory.
*/
void saveHTMLSource();
/**
* Saves the current page HTML source to a file, naming file with the provided name. If ".html" is not at the end of the filename it will be
* added. Also a number may be attached to help keep order.
*
* @param name Save the HTML source to a file with the provided name
*/
void saveHTMLSource(String name);
/**
* Reopen a new browser with the same configuration as the current one.
*/
void reopen();
/**
* Close all of the browser windows except the original one.
*/
void closeAllWindowsExceptOriginal();
/**
* Log a message to a separate file that can be a "session" file.
*
* @param name The name of the file to append to
* @param logString The message to log
*/
void logToSessionFile(String name, String logString);
/**
* Gets the first selected option and returns the text from that option.
*
* @param selectList that you want to get the first selected option from
* @return The text of the first selected option
*/
String getFirstSelectedOptionText(PageElement selectList);
/**
* Gets the first selected option and returns the text from that option.
*
* @param selectList that you want to get the first selected option from
* @param timeout The maximum amount of time to wait for the element to exist in seconds.
* @return The text of the first selected option
*/
String getFirstSelectOptionText(PageElement selectList, int timeout);
/**
* Hover the mouse over an element, firing a mouse over event. This is particularly useful for pages
* that use javascript events to display something when the mouse hovers over the element.
*
* The default timeout for searching for the element applies.
*
* @param element The element to mouse over.
*/
void hover(PageElement element);
/**
* Hover the mouse over an element, firing a mouse over event. This is particularly useful for pages
* that use javascript events to display something when the mouse hovers over the element.
*
* The timeout is for how long to search for the element to exist.
*
* @param element The element to mouse over.
* @param timeout The maximum amount of time to wait for the element to exist in seconds.
*/
void hover(PageElement element, int timeout);
/**
* Wait for a PageElement to be not visible. Use the default timeout.
*
* @param element The element to wait for.
*/
void waitForNotVisible(PageElement element);
/**
* Wait for a PageElement to be not visible. Use the default timeout
*
* @param element The element to wait for.
* @param timeout The maximum amount of time to wait.
*/
void waitForNotVisible(PageElement element, int timeout);
/**
* Wait for a PageElement to not exist. Use the default timeout.
*
* @param element The element to wait for.
*/
void waitForDoesNotExist(PageElement element);
/**
* Wait for a PageElement to not exist. Use the default timeout
*
* @param element The element to wait for.
* @param timeout The maximum amount of time to wait.
*/
void waitForDoesNotExist(PageElement element, int timeout);
/**
* Wait for an PageElement's getText() to not be empty or null. Use the default timeout.
* This method will also wait for the element to exist.
*
* An example usage for this method would be to wait for an ajax error message.
*
* @param element The element to wait for the text to be not empty.
*/
void waitForTextNotEmpty(PageElement element);
/**
* Wait for an PageElement's getText() to not be empty or null. Use the specified timeout.
* This method will also wait for the element to exist.
*
* An example usage for this method would be to wait for an ajax error message.
*
* @param element The element to wait for the text to be not empty.
* @param timeout The maximum wait time in seconds.
*/
void waitForTextNotEmpty(PageElement element, int timeout);
/**
* Wait for an PageElement's getText() to be empty or null. Use the default timeout.
* This method will also wait for the element to exist.
*
* An example usage for this method would be to wait for an ajax error message.
*
* @param element The element to wait for the text to be empty.
*/
void waitForTextEmpty(PageElement element);
/**
* Wait for an PageElement's getText() to be empty or null. Use the specified timeout.
* This method will also wait for the element to exist.
*
* An example usage for this method would be to wait for an ajax error message.
*
* @param element The element to wait for the text to be empty.
* @param timeout The maximum wait time in seconds.
*/
void waitForTextEmpty(PageElement element, int timeout);
/**
* Use actions on a PageWithActions. Basically any class (page) that implements the interface
* PageWithActions, and has a default no-arg constructor can be instantiated. Example would look like
* this:
*
* browser.on(MyExamplePage.class).doSomething("interesting");
*
*
* @param The java type that get's created.
* @param page The page class.
* @return an instance of the page initialized with the browser object.
*/
T on(Class page);
/**
* Use actions on a PageWithActions. Basically any instance of a class (page) that implements the interface
* PageWithActions. We will call the initializePage method on the page instance. Example would look like
* this:
*
* browser.on(MyExamplePage).doSomething("interesting");
*
*
* @param page an instance of the page.
* @param the PageWithActions class
* @return Class the class of the instantiated page
*/
T on (T page);
/**
* Return a list of PageElements, waiting a maximum of the default timeout for at least 1 matching element to exist.
*
* @param locator The page elements instance that describes how to find the elements
*/
List getPageElements(PageElement locator);
/**
* Return a list of PageElements, waiting a maximum of the amount of time passed for at least 1 matching element to exist.
*
* @param locator The page elements instance that describes how to find the elements
* @param timeout The maximum amount of time to wait for at least one element to exist in seconds.
*/
List getPageElements(PageElement locator, int timeout);
/**
* Scroll page to provided element
* @param locator
*/
void scrollIntoView(PageElement locator);
/**
* Scroll page to provided element
* @param locator
* @param timeout
*/
void scrollIntoView(PageElement locator, int timeout);
/**
* Slide a range input element by the offset amount. The offset it relative to the current range location.
* Wait a maximum of the default timeout for the element to exist.
*
* @param locator The page elements instance that describes how to find the elements
* @param xOffset The x offset from the current range input location to slide to
*/
void slideRangeInput(PageElement locator, int xOffset);
/**
* Slide a range input element by the offset amount. The offset it relative to the current range location.
* Wait a maximum of the amount of time passed in for the element to exist.
*
* @param locator The page elements instance that describes how to find the elements
* @param xOffset The x offset from the current range input location to slide to
* @param timeout The maximum amount of time to wait for the element to exist in seconds.
*/
void slideRangeInput(PageElement locator, int xOffset, int timeout);
/**
* Click on an element at the specified x and y offset. Wait a maximum of the default timeout for the element to exist.
*
* @param locator The page elements instance that describes how to find the elements
* @param xOffset The X offset within the Page Element to click at
* @param yOffset The Y offset within the Page Element to click at
*/
void clickAtOffset(PageElement locator, int xOffset, int yOffset);
/**
* Click on an element at the specified x and y offset. Wait a maximum of the amount of time passed in for the element to exist.
*
* @param locator The page elements instance that describes how to find the elements
* @param xOffset The X offset within the Page Element to click at
* @param yOffset The Y offset within the Page Element to click at
* @param timeout The maximum amount of time to wait for the element to exist in seconds.
*/
void clickAtOffset(PageElement locator, int xOffset, int yOffset, int timeout);
/**
* Wait for an PageElement's value attribute to not be empty or null. Use the default timeout.
* This method will also wait for the element to exist.
*
* An example usage for this method would be to wait for the input element to be populated.
*
* @param element The element to wait for the value attribute to be not empty.
*/
void waitForValueNotEmpty(PageElement element);
/**
* Wait for an PageElement's value attribute to not be empty or null. Use the specified timeout.
* This method will also wait for the element to exist.
*
* An example usage for this method would be to wait for the input element to be populated.
*
* @param element The element to wait for the value attribute to be not empty.
* @param timeout The maximum wait time in seconds.
*/
void waitForValueNotEmpty(PageElement element, int timeout);
/**
* Wait for an PageElement's value attribute to be empty or null. Use the default timeout.
* This method will also wait for the element to exist.
*
* An example usage for this method would be to wait for the input element to be populated.
*
* @param element The element to wait for the value attribute to be empty.
*/
void waitForValueEmpty(PageElement element);
/**
* Wait for an PageElement's value attribute to be empty or null. Use the specified timeout.
* This method will also wait for the element to exist.
*
* An example usage for this method would be to wait for the input element to be populated.
*
* @param element The element to wait for the value attribute to be empty.
* @param timeout The maximum wait time in seconds.
*/
void waitForValueEmpty(PageElement element, int timeout);
/**
* Delete all cookies
*/
void deleteAllCookies();
/**
* Delete cookie with the name provided
*
* @param cookieName
*/
void deleteCookieNamed(String cookieName);
/**
* Return the value of the cookie with the name provided
*
* @param cookieName
* @return the value of the cookie with the name provided
*/
String getValueOfCookieNamed(String cookieName);
/**
* Return the cookie with the name provided
*
* @param cookieName
* @return the cookie with the specified name
*/
Cookie getCookieNamed(String cookieName);
/**
* Add a cookie
* @param cookie The cookie to add
*/
void addCookie(Cookie cookie);
/**
* Get all cookies
*
* @return
*/
Set getAllCookies();
/**
* Accept an alert if it is present
*/
void acceptAlert();
/**
* Check if an alert is present. This is a quick check, no waiting is performed.
*
* @return true if an alert is present, false otherwise
*/
boolean alertPresent();
/**
* Check if an alert is present. Waiting the passed in timeout for an alert to be present.
*
* @param timeout
* @return true if the element exists and is accessible, false otherwise
*/
boolean alertPresent(int timeout);
/**
* Wait for an alert to be present. Use the default timeout.
*
*/
void waitForAlertPresent();
/**
* Wait for an alert to be present. Use the specified timeout.
*
* @param timeout The maximum wait time in seconds.
*/
void waitForAlertPresent(int timeout);
/**
* Wait for an alert to not be present. Use the default timeout.
*
*/
void waitForNoAlertPresent();
/**
* Wait for an alert to not be present. Use the specified timeout.
*
* @param timeout The maximum wait time in seconds.
*/
void waitForNoAlertPresent(int timeout);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy