You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 19, 2025. It is now read-only.
With separation of concerns in mind, we should move the navigate method from the WebDriverWrapper to the WebDriverNavigation method. Inherently, I think this makes the most sense as the WebDriverNavigation is supposed to be responsible only for anything navigation related.
/**
* Navigate to a specified URL
*
* @return as a {@link Navigation}
*/
public Navigation navigate() {
return this.driver.navigate();
}
We should also think about moving anything else navigation related outside of the navigation method.
A/C
Move the navigate method from the WebDriverWrapper to WebDriverNavigation
Look into moving any other navigation related methods to WebDriverNavigation where it won't impede the ScaffoldBaseTest and any implementing BaseTest file from implementing projects