File tree Expand file tree Collapse file tree 4 files changed +34
-9
lines changed
webdriverbackedselenium/Properties Expand file tree Collapse file tree 4 files changed +34
-9
lines changed Original file line number Diff line number Diff line change
1
+ v3.5.1
2
+ ======
3
+ * Added ability to detect spec-compliant capabilities in .NET. This
4
+ release updates the .NET DesiredCapabilities class to allow the
5
+ language bindings to construct the correct type of payload for the new
6
+ session command before sending the command to the remote end. This will
7
+ remove the burden from intermediate nodes (like the Java standalone server
8
+ and grid) from incorrectly parsing a driver using the legacy protocol
9
+ dialect (Edge, Safari, Chrome) and throwing an error on session creation.
10
+ Fixes issue #4443.
11
+ * Deprecated the static methods on the DesiredCapabilities class's methods
12
+ for specific browsers in .NET. For over a year, the guidance for .NET
13
+ users has been to use a browser-specific options class (FirefoxOptions,
14
+ InternetExplorerOptions, etc.) to set specific capabilities for the driver
15
+ to be instaniated. To use the options classes with the Java standalone
16
+ remote server or grid, call the `ToCapabilities` method on the options
17
+ object.
18
+ * Removed deprecated screenshot methods. These have been deprecated
19
+ since 3.1.0.
20
+ * Removed IsJavaScriptEnabled property from DesiredCapabilities. Since
21
+ virtually all driver implementations and all browsers support JavaScript
22
+ and cannot run properly without it being enabled, this property is nearly
23
+ useless. Use SetCapability("javascriptEnabled", true) if you require this
24
+ functionality.
25
+
1
26
v3.5.0
2
27
======
3
28
* (on behalf of Matthew Lymer) Fixing the parsing of logging levels to match
Original file line number Diff line number Diff line change 49
49
// Minor Version
50
50
// Build Number
51
51
// Revision
52
- [ assembly: AssemblyVersion ( "3.5.0 .0" ) ]
53
- [ assembly: AssemblyFileVersion ( "3.5.0 .0" ) ]
54
- [ assembly: AssemblyInformationalVersion ( "3.5.0 " ) ]
52
+ [ assembly: AssemblyVersion ( "3.5.1 .0" ) ]
53
+ [ assembly: AssemblyFileVersion ( "3.5.1 .0" ) ]
54
+ [ assembly: AssemblyInformationalVersion ( "3.5.1 " ) ]
Original file line number Diff line number Diff line change 49
49
// Minor Version
50
50
// Build Number
51
51
// Revision
52
- [ assembly: AssemblyVersion ( "3.5.0 .0" ) ]
53
- [ assembly: AssemblyFileVersion ( "3.5.0 .0" ) ]
54
- [ assembly: AssemblyInformationalVersion ( "3.5.0 " ) ]
52
+ [ assembly: AssemblyVersion ( "3.5.1 .0" ) ]
53
+ [ assembly: AssemblyFileVersion ( "3.5.1 .0" ) ]
54
+ [ assembly: AssemblyInformationalVersion ( "3.5.1 " ) ]
Original file line number Diff line number Diff line change 49
49
// Minor Version
50
50
// Build Number
51
51
// Revision
52
- [ assembly: AssemblyVersion ( "3.5.0 .0" ) ]
53
- [ assembly: AssemblyFileVersion ( "3.5.0 .0" ) ]
54
- [ assembly: AssemblyInformationalVersion ( "3.5.0 " ) ]
52
+ [ assembly: AssemblyVersion ( "3.5.1 .0" ) ]
53
+ [ assembly: AssemblyFileVersion ( "3.5.1 .0" ) ]
54
+ [ assembly: AssemblyInformationalVersion ( "3.5.1 " ) ]
You can’t perform that action at this time.
0 commit comments