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

com.nordstrom.automation.selenium.interfaces.WrapsContext Maven / Gradle / Ivy

Go to download

Selenium Foundation is an automation framework designed to extend and enhance the capabilities provided by Selenium (WebDriver).

There is a newer version: 28.3.1-s4
Show newest version
package com.nordstrom.automation.selenium.interfaces;

import org.openqa.selenium.SearchContext;
import org.openqa.selenium.WrapsDriver;

/**
 * Classes implement this interface to provide access to their underlying native Selenium
 * {@link SearchContext}. This interface also defines methods related to automatic recovery from 
 * {@link org.openqa.selenium.StaleElementReferenceException StaleElementReferenceException}
 * failures.
 */
public interface WrapsContext extends WrapsDriver {
    
    /**
     * Switch the driver to the context that underlies this object.
     * 
     * @return this object's underlying search context
     */
    SearchContext switchTo();
    
    /**
     * Get the underlying search context for this object.
     * 
     * @return object search context
     */
    SearchContext getWrappedContext();
    
    /**
     * Refresh the underlying search context for this object.
     * 
     * @param expiration expiration time of context chain
     * @return object search context
     */
    SearchContext refreshContext(long expiration);
    
    /**
     * Determine when the underlying search context for this object was acquired.
     * 
     * @return search context acquisition time (from {@link System#currentTimeMillis()})
     */
    long acquiredAt();
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy