Skip to content

Commit 5577c15

Browse files
committed
Updating IE prebuilts
1 parent d9fe6e0 commit 5577c15

File tree

4 files changed

+27
-4
lines changed

4 files changed

+27
-4
lines changed

cpp/iedriverserver/CHANGELOG

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,29 @@ available via the project downloads page. Changes in "revision" field indicate
99
private releases checked into the prebuilts directory of the source tree, but
1010
not made generally available on the downloads page.
1111

12+
v3.7.0.1
13+
========
14+
* Updated IE setAlertText command to check for invalid data.
15+
* Updated getActiveElement command for IE driver to handle contentEditable
16+
elements.
17+
* Fixed IE driver setTimeouts command to properly validate JSON payload.
18+
* Updated IE driver new session command handler to process null capability
19+
values.
20+
* Updated IE driver getActiveElement command to be spec-compliant. If there
21+
is no active element, this method may now return a null results, as in
22+
compliance with the W3C WebDriver specification, which relies on the DOM
23+
definition of active element. Language bindings maintainers should
24+
take note that this is a behavior change, and that the command can now
25+
return null values. Adjust your language bindings accordingly.
26+
* Made IE driver SetWindowRect command compliant with spec.
27+
* Made commands return NoSuchElement error in IE with incorrect internal IDs.
28+
The IE driver, to be spec compliant, must return "no such element" if an
29+
invalid internal WebDriver ID is passed in the URL. Previously, the driver
30+
would assume that the ID was one that was previously provided by the
31+
driver, but now has gone stale. This may cause discomfort for some rare
32+
use cases where the incorrect exception is being looked for.
33+
* Updating IE driver element tag name command handler to be spec compliant
34+
1235
v3.7.0.0
1336
========
1437
* Release to synchronize with release of Selenium project.

cpp/iedriverserver/IEDriverServer.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ END
5050
//
5151

5252
VS_VERSION_INFO VERSIONINFO
53-
FILEVERSION 3,7,0,0
54-
PRODUCTVERSION 3,7,0,0
53+
FILEVERSION 3,7,0,1
54+
PRODUCTVERSION 3,7,0,1
5555
FILEFLAGSMASK 0x3fL
5656
#ifdef _DEBUG
5757
FILEFLAGS 0x1L
@@ -68,12 +68,12 @@ BEGIN
6868
BEGIN
6969
VALUE "CompanyName", "Software Freedom Conservancy"
7070
VALUE "FileDescription", "Command line server for the IE driver"
71-
VALUE "FileVersion", "3.7.0.0"
71+
VALUE "FileVersion", "3.7.0.1"
7272
VALUE "InternalName", "IEDriverServer.exe"
7373
VALUE "LegalCopyright", "Copyright (C) 2017"
7474
VALUE "OriginalFilename", "IEDriverServer.exe"
7575
VALUE "ProductName", "Selenium WebDriver"
76-
VALUE "ProductVersion", "3.7.0.0"
76+
VALUE "ProductVersion", "3.7.0.1"
7777
END
7878
END
7979
BLOCK "VarFileInfo"
3 KB
Binary file not shown.
6 KB
Binary file not shown.

0 commit comments

Comments
 (0)