-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
7 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |