Skip to content

Commit 62a47fd

Browse files
committed
Bump the hmltunit version to 2.14
This also fixes the buck builds. There are two known build failures in the htmlunit JS tests, but these failed with the prior release, and so we're functionally equivalent.
1 parent 00f9aea commit 62a47fd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+85
-77
lines changed

.idea/libraries/commons_codec.xml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/libraries/commons_httpclient.xml

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/libraries/commons_io.xml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/libraries/commons_lang.xml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/libraries/commons_logging.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/libraries/htmlunit.xml

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/libraries/nekohtml.xml

Lines changed: 4 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/libraries/xml_apis.xml

Lines changed: 6 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

java/client/src/org/openqa/selenium/htmlunit/HtmlUnitDriver.java

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -243,19 +243,15 @@ static BrowserVersion determineBrowserVersion(Capabilities capabilities) {
243243
try {
244244
int version = Integer.parseInt(browserVersion);
245245
switch (version) {
246-
case 6:
247-
return BrowserVersion.INTERNET_EXPLORER_6;
248-
case 7:
249-
return BrowserVersion.INTERNET_EXPLORER_7;
250246
case 8:
251247
return BrowserVersion.INTERNET_EXPLORER_8;
252248
case 9:
253249
return BrowserVersion.INTERNET_EXPLORER_9;
254250
default:
255-
return BrowserVersion.INTERNET_EXPLORER_8;
251+
return BrowserVersion.INTERNET_EXPLORER_11;
256252
}
257253
} catch (NumberFormatException e) {
258-
return BrowserVersion.INTERNET_EXPLORER_8;
254+
return BrowserVersion.INTERNET_EXPLORER_11;
259255
}
260256
}
261257

java/client/src/org/openqa/selenium/remote/BUCK

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ java_library(
3333
java_library(name = 'remote',
3434
srcs = [
3535
'BeanToJsonConverter.java',
36+
'CommandCodec.java',
3637
'CommandInfo.java',
3738
'CoordinatesUtils.java',
3839
'DriverCommand.java',
@@ -52,18 +53,24 @@ java_library(name = 'remote',
5253
'RemoteTouchScreen.java',
5354
'RemoteWebDriver.java',
5455
'RemoteWebElement.java',
56+
'ResponseCodec.java',
5557
'ScreenshotException.java',
5658
'SessionNotFoundException.java',
5759
'SimplePropertyDescriptor.java',
5860
'UnreachableBrowserException.java',
5961
'UselessFileDetector.java',
6062
'html5/RemoteApplicationCache.java',
61-
'html5/RemoteBrowserConnection.java',
6263
'html5/RemoteDatabaseStorage.java',
6364
'html5/RemoteLocalStorage.java',
6465
'html5/RemoteLocationContext.java',
6566
'html5/RemoteSessionStorage.java',
6667
'html5/RemoteWebStorage.java',
68+
'http/HttpMessage.java',
69+
'http/HttpMethod.java',
70+
'http/HttpRequest.java',
71+
'http/HttpResponse.java',
72+
'http/JsonHttpCommandCodec.java',
73+
'http/JsonHttpResponseCodec.java',
6774
'internal/CircularOutputStream.java',
6875
'internal/HttpClientFactory.java',
6976
'internal/JsonToWebElementConverter.java',

0 commit comments

Comments
 (0)