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

org.jbehave.web.selenium.ContextView Maven / Gradle / Ivy

The newest version!
package org.jbehave.web.selenium;

/**
 * ContextView allows the viewing of context-related messages.
 * The principal use case is to fill a gap of functionality passing 
 * from Selenium API (with Selenium#setContext()) to WebDriver API
 * where this functionality is not available.
 */
public interface ContextView {

    void show(String scenario, String step);
    
    void close();
    
    public static class NULL implements ContextView {
        public void show(String scenario, String step) {
        }

        public void close() {
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy