-
-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updating .NET assembly versions and CHANGELOG for 4.0-alpha4
- Loading branch information
Showing
2 changed files
with
40 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,42 @@ | ||
v4.0.0a4 | ||
======== | ||
* (on behalf of Jan Trejbal) Fixed WebSocket message handler. This | ||
change fixes how responses are mapped to the request and propagated | ||
back to the caller, as well as correcting the use of Try* methods to | ||
check for return values. | ||
* (on behalf of Jan Trejbal) Fixed incorrectly used named parameters | ||
in string formatting. .NET Core does not support named parameters in | ||
string.Format(...), so this commit fixes that. Additionally, this | ||
fixes a logic error in DriverOptions. | ||
* Added support for relative locators. To use relative locators in | ||
.NET, take advantage of the new RelativeBy class to use with | ||
FindElement and FindElements. This change also marks the IFindsBy* | ||
interfaces (IFindsById, IFindsByName, etc.) as deprecated. The | ||
presence of individual methods for finding elements by each mechanism | ||
is an artifact of an older architecture, and with the standardization | ||
of the locator methods in the W3C WebDriver Specification, they are | ||
now just excess code, and will be deleted. | ||
* (on behalf of Stanley Hon) Updated EdgeOptions constructor to use new | ||
ms:edgeOptions capability name instead of goog:chromeOptions. | ||
* (on behalf of Stanley Hon) Updated EdgeOptions to allow specifying | ||
BrowserName. | ||
* Changed internal name of embedded resources in .NET assemblies. | ||
|
||
v4.0.0a3 | ||
======== | ||
* Fixed retrieval of "Logs". Fixes issue #7390. | ||
* Added Reset method to Actions class. | ||
* Added ToString override to .NET PauseInteraction. | ||
* (on behalf of Nikolay Borisenko) Fixed to Handle TaskCanceled exception | ||
and re-throw it with timeout exception. | ||
* Added ability to install/uninstall Firefox add-ons. | ||
* Modified to throw more informative exception on invalid new session | ||
response. | ||
* (on behalf of [email protected]) Summary for Minimize method | ||
corrected. | ||
* (on behalf of YevgeniyShunevych) Optimized Actions.MoveToElement | ||
method by removing needless operations. | ||
|
||
v4.0.0a2 | ||
======== | ||
* Added Chrome DevTools Protocol (CDP) support to .NET bindings. By | ||
|
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,5 +1,5 @@ | ||
# BUILD FILE SYNTAX: SKYLARK | ||
|
||
SE_VERSION = "4.0.0-alpha03" | ||
SE_VERSION = "4.0.0-alpha04" | ||
ASSEMBLY_VERSION = "4.0.0.0" | ||
SUPPORTED_NET_FRAMEWORKS = ["net45", "net46", "net47"] |