Skip to content

Commit

Permalink
Release 1.2.1 (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
tnypxl authored Jul 27, 2020
1 parent 620e1d2 commit a6b7819
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Basin/Basin.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>BasinFramework</PackageId>
<PackageVersion>1.2.0</PackageVersion>
<PackageVersion>1.2.1</PackageVersion>
<Title>Basin Framework</Title>
<Authors>Arik Jones</Authors>
<LangVersion>8</LangVersion>
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
11 changes: 2 additions & 9 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit a6b7819

Please sign in to comment.