Skip to content

Commit

Permalink
Updating IE prebuilts for latest changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jimevans committed Feb 20, 2018
1 parent e0b5478 commit be0d9d0
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 4 deletions.
23 changes: 23 additions & 0 deletions cpp/iedriverserver/CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,29 @@ available via the project downloads page. Changes in "revision" field indicate
private releases checked into the prebuilts directory of the source tree, but
not made generally available on the downloads page.

v3.9.0.3
========
* Refactored user input simulation code in IE driver. This commit breaks out
the three modes of user input simulation (native events using SendMessage,
native events using SendInput, simulated events using JavaScript) into
separate classes, making it easier to debug. Additionally, this commit
removes the code for enabling persistent hovers. This code had been
inadvertently disabled in a separate refactor some months ago, and there
have been no issue reports in that area, leading the IE driver development
team to believe that the issue in IE that required persistent hovers has
been resolved (at least in IE11). The code for persistent hovers has been
retained in a new, separate class in the project, but this class is not
built as part of the IE driver at this time. If issue reports warrent
its inclusion in the future, it can be easily re-added.
* Added support allowing binding to IPv6 loopback in IE driver. When no host
is specified on the command line, and no list of whitelisted IP addresses
are specified, IEDriverServer.exe will now bind to both the IPv4 and IPv6
loopback adapters. If no IPv6 stack is found on the OS, the executable
will retry binding only to IPv4. Note that when using whitelisted IP
addresses, only IPv4 is supported. This is a limitation of the Civetweb
HTTP server upon which IEDriverServer.exe relies. This commit also updates
the version of Civetweb to 1.10.

v3.9.0.2
========
* Reduced overall wait interval time.
Expand Down
8 changes: 4 additions & 4 deletions cpp/iedriverserver/IEDriverServer.rc
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ END
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 3,9,0,2
PRODUCTVERSION 3,9,0,2
FILEVERSION 3,9,0,3
PRODUCTVERSION 3,9,0,3
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -68,12 +68,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Software Freedom Conservancy"
VALUE "FileDescription", "Command line server for the IE driver"
VALUE "FileVersion", "3.9.0.2"
VALUE "FileVersion", "3.9.0.3"
VALUE "InternalName", "IEDriverServer.exe"
VALUE "LegalCopyright", "Copyright (C) 2017"
VALUE "OriginalFilename", "IEDriverServer.exe"
VALUE "ProductName", "Selenium WebDriver"
VALUE "ProductVersion", "3.9.0.2"
VALUE "ProductVersion", "3.9.0.3"
END
END
BLOCK "VarFileInfo"
Expand Down
Binary file modified cpp/prebuilt/Win32/Release/IEDriverServer.exe
Binary file not shown.
Binary file modified cpp/prebuilt/x64/Release/IEDriverServer.exe
Binary file not shown.

0 comments on commit be0d9d0

Please sign in to comment.