Skip to content

Commit

Permalink
Updating JavaScript atoms and IE prebuilts
Browse files Browse the repository at this point in the history
  • Loading branch information
jimevans committed Mar 9, 2018
1 parent 2fe0d1a commit 605c511
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 10 deletions.
14 changes: 8 additions & 6 deletions cpp/iedriver/Generated/atoms.h
Original file line number Diff line number Diff line change
Expand Up @@ -1625,12 +1625,14 @@ const wchar_t* const CLEAR[] = {
L"(12,\"Element is not currently interactable and may not be manipulated",
L"\");if(!(Ic(a)||v(a,\"INPUT\")&&\"file\"==a.type.toLowerCase())||lb(a,",
L"\"readOnly\"))throw new Da(12,\"Element must be user-editable in order",
L" to clear it.\");a.value?(pd(a),a.value=\"\",dd(a,cd),dd(a,bd),pd(docu",
L"ment.body)):v(a,\"INPUT\")&&a.getAttribute(\"type\")&&\"number\"==a.ge",
L"tAttribute(\"type\").toLowerCase()&&(pd(a),a.value=\"\");Mc(a)&&(pd(a)",
L",a.innerHTML=\" \")});; return this._.apply(null,arguments);}.apply({n",
L"avigator:typeof window!='undefined'?window.navigator:null,document:typ",
L"eof window!='undefined'?window.document:null}, arguments);}",
L" to clear it.\");if(a.value){pd(a);a.value=\"\";dd(a,cd);dd(a,bd);var ",
L"b=ka.document.body;if(b)pd(b);else throw new Da(13,\"Cannot unfocus el",
L"ement after clearing.\");}else v(a,\"INPUT\")&&a.getAttribute(\"type\"",
L")&&\"number\"==a.getAttribute(\"type\").toLowerCase()&&\n(pd(a),a.valu",
L"e=\"\");Mc(a)&&(pd(a),a.innerHTML=\" \")});; return this._.apply(null,",
L"arguments);}.apply({navigator:typeof window!='undefined'?window.naviga",
L"tor:null,document:typeof window!='undefined'?window.document:null}, ar",
L"guments);}",
NULL
};

Expand Down
10 changes: 10 additions & 0 deletions cpp/iedriverserver/CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,16 @@ 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.10.0.2
=========
* Updates to JavaScript automation atoms.
* Fixed clear element command to handle cases where the element's parent
document is undefined.
* Fixed sending keystrokes with native events disabled. Because apparently,
the driver's developer can't remember how function binding works in C++
when using a pointer to the object instead of the object itself. Fixes
issue #5584.

v3.10.0.1
=========
* Updates to JavaScript automation atoms.
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,10,0,1
PRODUCTVERSION 3,10,0,1
FILEVERSION 3,10,0,2
PRODUCTVERSION 3,10,0,2
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.10.0.1"
VALUE "FileVersion", "3.10.0.2"
VALUE "InternalName", "IEDriverServer.exe"
VALUE "LegalCopyright", "Copyright (C) 2017"
VALUE "OriginalFilename", "IEDriverServer.exe"
VALUE "ProductName", "Selenium WebDriver"
VALUE "ProductVersion", "3.10.0.1"
VALUE "ProductVersion", "3.10.0.2"
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 605c511

Please sign in to comment.