diff --git a/cpp/iedriverserver/CHANGELOG b/cpp/iedriverserver/CHANGELOG index 50f7d8d687f81..bfc3606dff591 100644 --- a/cpp/iedriverserver/CHANGELOG +++ b/cpp/iedriverserver/CHANGELOG @@ -9,6 +9,19 @@ 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.11.0.0 +========= + * Release to synchronize with release of Selenium project. + * Added additional logging to new session command. + * Added detection of intercepted element clicks to IE. This brings the IE + driver into alignment with the Chrome and Firefox (geckodriver) drivers, + in that it detects when an element attempting to be clicked on is covered + in the z-order by another element. Do note that this may cause different + behavior from previous versions of the IE driver for WebDriver code that + runs only on IE. For code that runs cross-browser, this should now yield + the same behavior across platforms. + + v3.10.0.2 ========= * Updates to JavaScript automation atoms. diff --git a/cpp/iedriverserver/IEDriverServer.rc b/cpp/iedriverserver/IEDriverServer.rc index b2bd619a47b1e..377421d10aa73 100644 --- a/cpp/iedriverserver/IEDriverServer.rc +++ b/cpp/iedriverserver/IEDriverServer.rc @@ -50,8 +50,8 @@ END // VS_VERSION_INFO VERSIONINFO - FILEVERSION 3,10,0,2 - PRODUCTVERSION 3,10,0,2 + FILEVERSION 3,11,0,0 + PRODUCTVERSION 3,11,0,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -68,12 +68,12 @@ BEGIN BEGIN VALUE "CompanyName", "Software Freedom Conservancy" VALUE "FileDescription", "Command line server for the IE driver" - VALUE "FileVersion", "3.10.0.2" + VALUE "FileVersion", "3.11.0.0" VALUE "InternalName", "IEDriverServer.exe" VALUE "LegalCopyright", "Copyright (C) 2017" VALUE "OriginalFilename", "IEDriverServer.exe" VALUE "ProductName", "Selenium WebDriver" - VALUE "ProductVersion", "3.10.0.2" + VALUE "ProductVersion", "3.11.0.0" END END BLOCK "VarFileInfo" diff --git a/cpp/prebuilt/Win32/Release/IEDriverServer.exe b/cpp/prebuilt/Win32/Release/IEDriverServer.exe index aa045aac17777..41813f06f1d19 100644 Binary files a/cpp/prebuilt/Win32/Release/IEDriverServer.exe and b/cpp/prebuilt/Win32/Release/IEDriverServer.exe differ diff --git a/cpp/prebuilt/x64/Release/IEDriverServer.exe b/cpp/prebuilt/x64/Release/IEDriverServer.exe index 868f597167adb..fc6f5ecb41408 100644 Binary files a/cpp/prebuilt/x64/Release/IEDriverServer.exe and b/cpp/prebuilt/x64/Release/IEDriverServer.exe differ