Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,15 @@
* {@link WebDriverTestExecutionListener}.
*
* @author Phillip Webb
* @since 2.6.0
* @see WebDriverContextCustomizerFactory
* @see WebDriverTestExecutionListener
*/
class WebDriverScope implements Scope {
public class WebDriverScope implements Scope {

/**
* WebDriver bean scope name.
*/
public static final String NAME = "webDriver";

private static final String WEB_DRIVER_CLASS = "org.openqa.selenium.WebDriver";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,11 @@
* {@link TestExecutionListener} to reset the {@link WebDriverScope}.
*
* @author Phillip Webb
* @since 2.6.0
* @see WebDriverContextCustomizerFactory
* @see WebDriverScope
*/
class WebDriverTestExecutionListener extends AbstractTestExecutionListener {
public class WebDriverTestExecutionListener extends AbstractTestExecutionListener {

@Override
public int getOrder() {
Expand Down