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
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
The text was updated successfully, but these errors were encountered:
Summary
With separation of concerns in mind, we should move the navigate method from the
WebDriverWrapper
to theWebDriverNavigation
method. Inherently, I think this makes the most sense as theWebDriverNavigation
is supposed to be responsible only for anything navigation related.We should also think about moving anything else navigation related outside of the navigation method.
A/C
WebDriverWrapper
toWebDriverNavigation
WebDriverNavigation
where it won't impede theScaffoldBaseTest
and any implementingBaseTest
file from implementing projectsThe text was updated successfully, but these errors were encountered: