org.jbehave.web.selenium.ContextView Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jbehave-web-selenium Show documentation
Show all versions of jbehave-web-selenium Show documentation
Selenium and WebDriver API bindings for JBehave
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() {
}
}
}