mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-20 14:24:15 +00:00
deps: Refactor dependencies (#3224)
* remove spring dep move junit, logging, mockito under dep mgmt * upgrade anti-corruption-layer deps * async method invocation * balking, bloc * bridge to bytecode * caching * callback - cqrs * component - health check * hexagonal - metadata mapping * rest of the patterns * remove checkstyle, take spotless into use
This commit is contained in:
@@ -26,14 +26,10 @@ package com.iluwatar.pageobject.pages;
|
||||
|
||||
import org.htmlunit.WebClient;
|
||||
|
||||
/**
|
||||
* Encapsulation for a generic 'Page'
|
||||
*/
|
||||
/** Encapsulation for a generic 'Page' */
|
||||
public abstract class Page {
|
||||
|
||||
/**
|
||||
* Application Under Test path This directory location is where html web pages are located
|
||||
*/
|
||||
/** Application Under Test path This directory location is where html web pages are located */
|
||||
public static final String AUT_PATH = "src/main/resources/sample-ui/";
|
||||
|
||||
protected final WebClient webClient;
|
||||
@@ -53,6 +49,4 @@ public abstract class Page {
|
||||
* @return true if so, otherwise false
|
||||
*/
|
||||
public abstract boolean isAt();
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user