1717
1818package org .openqa .selenium .remote ;
1919
20- import static java .util .Collections .singleton ;
21- import static java .util .concurrent .TimeUnit .SECONDS ;
22- import static org .openqa .selenium .remote .CapabilityType .LOGGING_PREFS ;
23- import static org .openqa .selenium .remote .CapabilityType .PLATFORM ;
24- import static org .openqa .selenium .remote .CapabilityType .PLATFORM_NAME ;
25- import static org .openqa .selenium .remote .CapabilityType .SUPPORTS_JAVASCRIPT ;
26-
2720import com .google .common .collect .ImmutableMap ;
2821import com .google .common .collect .ImmutableSet ;
2922
9790import java .util .stream .Collectors ;
9891import java .util .stream .Stream ;
9992
93+ import static java .util .Collections .singleton ;
94+ import static java .util .concurrent .TimeUnit .SECONDS ;
10095import static java .util .logging .Level .SEVERE ;
96+ import static org .openqa .selenium .remote .CapabilityType .LOGGING_PREFS ;
97+ import static org .openqa .selenium .remote .CapabilityType .PLATFORM ;
98+ import static org .openqa .selenium .remote .CapabilityType .PLATFORM_NAME ;
99+ import static org .openqa .selenium .remote .CapabilityType .SUPPORTS_JAVASCRIPT ;
101100
102101@ Augmentable
103102public class RemoteWebDriver implements WebDriver ,
@@ -837,6 +836,9 @@ public Timeouts timeouts() {
837836 return new RemoteTimeouts ();
838837 }
839838
839+ /**
840+ * @deprecated Will be removed. IME is not part of W3C WebDriver and does not work on browsers.
841+ */
840842 @ Override
841843 public ImeHandler ime () {
842844 return new RemoteInputMethodManager ();
@@ -848,6 +850,9 @@ public Window window() {
848850 return new RemoteWindow ();
849851 }
850852
853+ /**
854+ * @deprecated Will be removed. IME is not part of W3C WebDriver and does not work on browsers.
855+ */
851856 protected class RemoteInputMethodManager implements WebDriver .ImeHandler {
852857
853858 @ Override
0 commit comments