|
28 | 28 | import org.openqa.selenium.remote.http.HttpResponse;
|
29 | 29 | import org.openqa.selenium.remote.http.JsonHttpCommandCodec;
|
30 | 30 | import org.openqa.selenium.remote.http.JsonHttpResponseCodec;
|
31 |
| -import org.openqa.selenium.remote.server.handler.*; |
32 |
| -import org.openqa.selenium.remote.server.handler.html5.*; |
33 |
| -import org.openqa.selenium.remote.server.handler.interactions.*; |
34 |
| -import org.openqa.selenium.remote.server.handler.interactions.touch.*; |
35 |
| -import org.openqa.selenium.remote.server.handler.mobile.*; |
| 31 | +import org.openqa.selenium.remote.server.handler.AcceptAlert; |
| 32 | +import org.openqa.selenium.remote.server.handler.AddConfig; |
| 33 | +import org.openqa.selenium.remote.server.handler.AddCookie; |
| 34 | +import org.openqa.selenium.remote.server.handler.CaptureScreenshot; |
| 35 | +import org.openqa.selenium.remote.server.handler.ChangeUrl; |
| 36 | +import org.openqa.selenium.remote.server.handler.ClearElement; |
| 37 | +import org.openqa.selenium.remote.server.handler.ClickElement; |
| 38 | +import org.openqa.selenium.remote.server.handler.CloseWindow; |
| 39 | +import org.openqa.selenium.remote.server.handler.ConfigureTimeout; |
| 40 | +import org.openqa.selenium.remote.server.handler.DeleteCookie; |
| 41 | +import org.openqa.selenium.remote.server.handler.DeleteNamedCookie; |
| 42 | +import org.openqa.selenium.remote.server.handler.DeleteSession; |
| 43 | +import org.openqa.selenium.remote.server.handler.DismissAlert; |
| 44 | +import org.openqa.selenium.remote.server.handler.ElementEquality; |
| 45 | +import org.openqa.selenium.remote.server.handler.ExecuteAsyncScript; |
| 46 | +import org.openqa.selenium.remote.server.handler.ExecuteScript; |
| 47 | +import org.openqa.selenium.remote.server.handler.FindActiveElement; |
| 48 | +import org.openqa.selenium.remote.server.handler.FindChildElement; |
| 49 | +import org.openqa.selenium.remote.server.handler.FindChildElements; |
| 50 | +import org.openqa.selenium.remote.server.handler.FindElement; |
| 51 | +import org.openqa.selenium.remote.server.handler.FindElements; |
| 52 | +import org.openqa.selenium.remote.server.handler.FullscreenWindow; |
| 53 | +import org.openqa.selenium.remote.server.handler.GetAlertText; |
| 54 | +import org.openqa.selenium.remote.server.handler.GetAllCookies; |
| 55 | +import org.openqa.selenium.remote.server.handler.GetAllSessions; |
| 56 | +import org.openqa.selenium.remote.server.handler.GetAllWindowHandles; |
| 57 | +import org.openqa.selenium.remote.server.handler.GetAvailableLogTypesHandler; |
| 58 | +import org.openqa.selenium.remote.server.handler.GetCookie; |
| 59 | +import org.openqa.selenium.remote.server.handler.GetCssProperty; |
| 60 | +import org.openqa.selenium.remote.server.handler.GetCurrentUrl; |
| 61 | +import org.openqa.selenium.remote.server.handler.GetCurrentWindowHandle; |
| 62 | +import org.openqa.selenium.remote.server.handler.GetElementAttribute; |
| 63 | +import org.openqa.selenium.remote.server.handler.GetElementDisplayed; |
| 64 | +import org.openqa.selenium.remote.server.handler.GetElementEnabled; |
| 65 | +import org.openqa.selenium.remote.server.handler.GetElementLocation; |
| 66 | +import org.openqa.selenium.remote.server.handler.GetElementLocationInView; |
| 67 | +import org.openqa.selenium.remote.server.handler.GetElementRect; |
| 68 | +import org.openqa.selenium.remote.server.handler.GetElementSelected; |
| 69 | +import org.openqa.selenium.remote.server.handler.GetElementSize; |
| 70 | +import org.openqa.selenium.remote.server.handler.GetElementText; |
| 71 | +import org.openqa.selenium.remote.server.handler.GetLogHandler; |
| 72 | +import org.openqa.selenium.remote.server.handler.GetPageSource; |
| 73 | +import org.openqa.selenium.remote.server.handler.GetScreenOrientation; |
| 74 | +import org.openqa.selenium.remote.server.handler.GetSessionCapabilities; |
| 75 | +import org.openqa.selenium.remote.server.handler.GetSessionLogsHandler; |
| 76 | +import org.openqa.selenium.remote.server.handler.GetTagName; |
| 77 | +import org.openqa.selenium.remote.server.handler.GetTitle; |
| 78 | +import org.openqa.selenium.remote.server.handler.GetWindowPosition; |
| 79 | +import org.openqa.selenium.remote.server.handler.GetWindowSize; |
| 80 | +import org.openqa.selenium.remote.server.handler.GoBack; |
| 81 | +import org.openqa.selenium.remote.server.handler.GoForward; |
| 82 | +import org.openqa.selenium.remote.server.handler.ImeActivateEngine; |
| 83 | +import org.openqa.selenium.remote.server.handler.ImeDeactivate; |
| 84 | +import org.openqa.selenium.remote.server.handler.ImeGetActiveEngine; |
| 85 | +import org.openqa.selenium.remote.server.handler.ImeGetAvailableEngines; |
| 86 | +import org.openqa.selenium.remote.server.handler.ImeIsActivated; |
| 87 | +import org.openqa.selenium.remote.server.handler.ImplicitlyWait; |
| 88 | +import org.openqa.selenium.remote.server.handler.MaximizeWindow; |
| 89 | +import org.openqa.selenium.remote.server.handler.NewSession; |
| 90 | +import org.openqa.selenium.remote.server.handler.RefreshPage; |
| 91 | +import org.openqa.selenium.remote.server.handler.Rotate; |
| 92 | +import org.openqa.selenium.remote.server.handler.SendKeys; |
| 93 | +import org.openqa.selenium.remote.server.handler.SetAlertCredentials; |
| 94 | +import org.openqa.selenium.remote.server.handler.SetAlertText; |
| 95 | +import org.openqa.selenium.remote.server.handler.SetScriptTimeout; |
| 96 | +import org.openqa.selenium.remote.server.handler.SetWindowPosition; |
| 97 | +import org.openqa.selenium.remote.server.handler.SetWindowSize; |
| 98 | +import org.openqa.selenium.remote.server.handler.Status; |
| 99 | +import org.openqa.selenium.remote.server.handler.SubmitElement; |
| 100 | +import org.openqa.selenium.remote.server.handler.SwitchToFrame; |
| 101 | +import org.openqa.selenium.remote.server.handler.SwitchToParentFrame; |
| 102 | +import org.openqa.selenium.remote.server.handler.SwitchToWindow; |
| 103 | +import org.openqa.selenium.remote.server.handler.UploadFile; |
| 104 | +import org.openqa.selenium.remote.server.handler.html5.ClearLocalStorage; |
| 105 | +import org.openqa.selenium.remote.server.handler.html5.ClearSessionStorage; |
| 106 | +import org.openqa.selenium.remote.server.handler.html5.GetAppCacheStatus; |
| 107 | +import org.openqa.selenium.remote.server.handler.html5.GetLocalStorageItem; |
| 108 | +import org.openqa.selenium.remote.server.handler.html5.GetLocalStorageKeys; |
| 109 | +import org.openqa.selenium.remote.server.handler.html5.GetLocalStorageSize; |
| 110 | +import org.openqa.selenium.remote.server.handler.html5.GetLocationContext; |
| 111 | +import org.openqa.selenium.remote.server.handler.html5.GetSessionStorageItem; |
| 112 | +import org.openqa.selenium.remote.server.handler.html5.GetSessionStorageKeys; |
| 113 | +import org.openqa.selenium.remote.server.handler.html5.GetSessionStorageSize; |
| 114 | +import org.openqa.selenium.remote.server.handler.html5.RemoveLocalStorageItem; |
| 115 | +import org.openqa.selenium.remote.server.handler.html5.RemoveSessionStorageItem; |
| 116 | +import org.openqa.selenium.remote.server.handler.html5.SetLocalStorageItem; |
| 117 | +import org.openqa.selenium.remote.server.handler.html5.SetLocationContext; |
| 118 | +import org.openqa.selenium.remote.server.handler.html5.SetSessionStorageItem; |
| 119 | +import org.openqa.selenium.remote.server.handler.interactions.ClickInSession; |
| 120 | +import org.openqa.selenium.remote.server.handler.interactions.DoubleClickInSession; |
| 121 | +import org.openqa.selenium.remote.server.handler.interactions.MouseDown; |
| 122 | +import org.openqa.selenium.remote.server.handler.interactions.MouseMoveToLocation; |
| 123 | +import org.openqa.selenium.remote.server.handler.interactions.MouseUp; |
| 124 | +import org.openqa.selenium.remote.server.handler.interactions.SendKeyToActiveElement; |
| 125 | +import org.openqa.selenium.remote.server.handler.interactions.touch.DoubleTapOnElement; |
| 126 | +import org.openqa.selenium.remote.server.handler.interactions.touch.Down; |
| 127 | +import org.openqa.selenium.remote.server.handler.interactions.touch.Flick; |
| 128 | +import org.openqa.selenium.remote.server.handler.interactions.touch.LongPressOnElement; |
| 129 | +import org.openqa.selenium.remote.server.handler.interactions.touch.Move; |
| 130 | +import org.openqa.selenium.remote.server.handler.interactions.touch.Scroll; |
| 131 | +import org.openqa.selenium.remote.server.handler.interactions.touch.SingleTapOnElement; |
| 132 | +import org.openqa.selenium.remote.server.handler.interactions.touch.Up; |
| 133 | +import org.openqa.selenium.remote.server.handler.mobile.GetNetworkConnection; |
| 134 | +import org.openqa.selenium.remote.server.handler.mobile.SetNetworkConnection; |
36 | 135 | import org.openqa.selenium.remote.server.rest.RestishHandler;
|
37 | 136 | import org.openqa.selenium.remote.server.rest.ResultConfig;
|
38 | 137 |
|
@@ -119,8 +218,6 @@ private void setUpMappings() {
|
119 | 218 |
|
120 | 219 | addNewMapping(EXECUTE_SCRIPT, ExecuteScript.class);
|
121 | 220 | addNewMapping(EXECUTE_ASYNC_SCRIPT, ExecuteAsyncScript.class);
|
122 |
| - addNewMapping(EXECUTE_SCRIPT_W3C, ExecuteScript.class); |
123 |
| - addNewMapping(EXECUTE_ASYNC_SCRIPT_W3C, ExecuteAsyncScript.class); |
124 | 221 |
|
125 | 222 | addNewMapping(GET_PAGE_SOURCE, GetPageSource.class);
|
126 | 223 |
|
|
0 commit comments