diff --git a/Basin/Basin.csproj b/Basin/Basin.csproj index ee9300b..8947bab 100644 --- a/Basin/Basin.csproj +++ b/Basin/Basin.csproj @@ -1,7 +1,7 @@  BasinFramework - 1.2.0 + 1.2.1 Basin Framework Arik Jones 8 diff --git a/CHANGELOG.md b/CHANGELOG.md index 5835fd0..9c6e3e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## v1.2.1 + +* **[NEW ✨]** Add capabilities from JSON config + ## v1.2.0 * **[NEW ✨]** Add `Precedes()`, `Follows()`, `Child()`, and `Parent()` methods to `Locator() and Element()` classes. diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 58b8896..4da35a9 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,10 +1,3 @@ -## v1.2.0 +## v1.2.1 -* **[NEW ✨]** Add `Precedes()`, `Follows()`, `Child()`, and `Parent()` methods to `Locator() and Element()` classes. - * Ex: `DivTag.Parent()` => Locates the parent of a `div` tag. - * Ex: `DivTag.Child()` => Locates the child of a `div` tag. - * Ex: `DivTag.Precedes(SpanTag)` => Locates a `div` tag that precedes another `span` tag. - * Ex: `DivTag.Follows(SpanTag)` => Locates a `div` tag that follows another `span` tag. -* **[REFACTOR 🛠]** YET ANOTHER overhaul to web driver management. Here is the short list: - * Added mapper classes that map the APIs of driver options and services for Firefox, Chrome, and IE to a common API. This has always been the goal with each iteration of this part of the framework. But this time I prioritized clarity and maintainability. - * Renamed Browser to BrowserSession to prevent namespace collisions with classes in `Basin.Core`. +* **[NEW ✨]** Configure driver capabilities from via JSON config \ No newline at end of file