|
70 | 70 | import org.openqa.selenium.remote.server.handler.GetElementText; |
71 | 71 | import org.openqa.selenium.remote.server.handler.GetLogHandler; |
72 | 72 | import org.openqa.selenium.remote.server.handler.GetPageSource; |
73 | | -import org.openqa.selenium.remote.server.handler.GetScreenOrientation; |
74 | 73 | import org.openqa.selenium.remote.server.handler.GetSessionCapabilities; |
75 | 74 | import org.openqa.selenium.remote.server.handler.GetSessionLogsHandler; |
76 | 75 | import org.openqa.selenium.remote.server.handler.GetTagName; |
|
82 | 81 | import org.openqa.selenium.remote.server.handler.ImplicitlyWait; |
83 | 82 | import org.openqa.selenium.remote.server.handler.MaximizeWindow; |
84 | 83 | import org.openqa.selenium.remote.server.handler.RefreshPage; |
85 | | -import org.openqa.selenium.remote.server.handler.Rotate; |
86 | 84 | import org.openqa.selenium.remote.server.handler.SendKeys; |
87 | 85 | import org.openqa.selenium.remote.server.handler.SetAlertText; |
88 | 86 | import org.openqa.selenium.remote.server.handler.SetScriptTimeout; |
|
185 | 183 | import static org.openqa.selenium.remote.DriverCommand.GET_LOG; |
186 | 184 | import static org.openqa.selenium.remote.DriverCommand.GET_NETWORK_CONNECTION; |
187 | 185 | import static org.openqa.selenium.remote.DriverCommand.GET_PAGE_SOURCE; |
188 | | -import static org.openqa.selenium.remote.DriverCommand.GET_SCREEN_ORIENTATION; |
189 | 186 | import static org.openqa.selenium.remote.DriverCommand.GET_SESSION_LOGS; |
190 | 187 | import static org.openqa.selenium.remote.DriverCommand.GET_SESSION_STORAGE_ITEM; |
191 | 188 | import static org.openqa.selenium.remote.DriverCommand.GET_SESSION_STORAGE_KEYS; |
|
211 | 208 | import static org.openqa.selenium.remote.DriverCommand.SET_LOCAL_STORAGE_ITEM; |
212 | 209 | import static org.openqa.selenium.remote.DriverCommand.SET_LOCATION; |
213 | 210 | import static org.openqa.selenium.remote.DriverCommand.SET_NETWORK_CONNECTION; |
214 | | -import static org.openqa.selenium.remote.DriverCommand.SET_SCREEN_ORIENTATION; |
215 | 211 | import static org.openqa.selenium.remote.DriverCommand.SET_SCRIPT_TIMEOUT; |
216 | 212 | import static org.openqa.selenium.remote.DriverCommand.SET_SESSION_STORAGE_ITEM; |
217 | 213 | import static org.openqa.selenium.remote.DriverCommand.SET_TIMEOUT; |
@@ -429,9 +425,6 @@ private void setUpMappings() { |
429 | 425 | addNewMapping(CLEAR_SESSION_STORAGE, ClearSessionStorage::new); |
430 | 426 | addNewMapping(GET_SESSION_STORAGE_SIZE, GetSessionStorageSize::new); |
431 | 427 |
|
432 | | - addNewMapping(GET_SCREEN_ORIENTATION, GetScreenOrientation::new); |
433 | | - addNewMapping(SET_SCREEN_ORIENTATION, Rotate::new); |
434 | | - |
435 | 428 | addNewMapping(MOVE_TO, MouseMoveToLocation::new); |
436 | 429 | addNewMapping(CLICK, ClickInSession::new); |
437 | 430 | addNewMapping(DOUBLE_CLICK, DoubleClickInSession::new); |
|
0 commit comments