Skip to content

Commit 14fa800

Browse files
committed
Updating .NET CHANGELOG for 2.39.0 release
1 parent ff631ae commit 14fa800

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

dotnet/CHANGELOG

+21
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
v2.39.0
2+
=======
3+
* Deprecated .NET AndroidDriver class. Going forward, the recommended approach
4+
is to use a third-party implementation for Android, such as Selendroid
5+
(http://selendroid.io/) or Appium (http://appium.io/).
6+
* Added experimental IWebDriver extension methods to .NET support classes.
7+
This commit adds extension methods to IWebDriver, which can be used to
8+
reduce the amount of type casting that must be done to access
9+
functionality not provided by the base IWebDriver interface. The following
10+
methods were added:
11+
12+
* TakeScreenshot() - does not require a cast to ITakesScreenshot, and has
13+
support for working directly with instances of RemoteWebDriver.
14+
* ExecuteJavaScript<T>() - does not require a cast to
15+
IJavaScriptExecutor, and will automatically cast the result to the type
16+
specified by the generic type parameter (T).
17+
18+
These extension methods should be considered experimental. To use them
19+
requires a reference to WebDriver.Support.dll, and adding a using clause
20+
for OpenQA.Selenium.Support.Extensions.
21+
122
v2.38.0
223
=======
324
* Issue #6383: Adding method GetCSSCount to ISelenium.

0 commit comments

Comments
 (0)