Skip to content

Commit 46bdda0

Browse files
committed
Updating IE prebuilts with latest binaries
1 parent e424840 commit 46bdda0

File tree

5 files changed

+25
-8
lines changed

5 files changed

+25
-8
lines changed

cpp/iedriver/IEDriver.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,141,0,0
54-
PRODUCTVERSION 3,141,0,0
53+
FILEVERSION 3,141,0,1
54+
PRODUCTVERSION 3,141,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", "Driver library for the IE driver"
71-
VALUE "FileVersion", "3.141.0.0"
71+
VALUE "FileVersion", "3.141.0.1"
7272
VALUE "InternalName", "IEDriver.dll"
7373
VALUE "LegalCopyright", "Copyright (C) 2018"
7474
VALUE "OriginalFilename", "IEDriver.dll"
7575
VALUE "ProductName", "Selenium WebDriver"
76-
VALUE "ProductVersion", "3.141.0.0"
76+
VALUE "ProductVersion", "3.141.0.1"
7777
END
7878
END
7979
BLOCK "VarFileInfo"

cpp/iedriverserver/CHANGELOG

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,23 @@ 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.141.0.1
13+
==========
14+
* Updated error message return from unserializable JavaScript results. In
15+
the case where a user JavaScript execution completes successfully, but
16+
the resulting option is not serializable via JSON (because of cyclical
17+
references or similar), the error message that the execution errored due
18+
to the failed serialization was being suppressed.
19+
* Added support for strictFileInteractability capability. The latest
20+
editors' drafts of the W3C WebDriver Specification as a living document
21+
have introduce the "strictFileInteractability" capability for handling
22+
<input type='file'> elements. This change makes the driver aware of that
23+
capability.
24+
* Removed premature break statements in obscured element check. When
25+
looping through the elements returned by elementsFromPoint, the driver
26+
was calling a break statement early, preventing clear error messages for
27+
which element is obscuring the element to be clicked.
28+
1229
v3.141.0.0
1330
==========
1431
* 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,141,0,0
54-
PRODUCTVERSION 3,141,0,0
53+
FILEVERSION 3,141,0,1
54+
PRODUCTVERSION 3,141,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.141.0.0"
71+
VALUE "FileVersion", "3.141.0.1"
7272
VALUE "InternalName", "IEDriverServer.exe"
7373
VALUE "LegalCopyright", "Copyright (C) 2018"
7474
VALUE "OriginalFilename", "IEDriverServer.exe"
7575
VALUE "ProductName", "Selenium WebDriver"
76-
VALUE "ProductVersion", "3.141.0.0"
76+
VALUE "ProductVersion", "3.141.0.1"
7777
END
7878
END
7979
BLOCK "VarFileInfo"
1.5 KB
Binary file not shown.
2 KB
Binary file not shown.

0 commit comments

Comments
 (0)