File tree Expand file tree Collapse file tree
java/server/src/org/openqa/selenium/remote/server Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -326,5 +326,19 @@ private void setUpMappings() {
326326
327327 addNewMapping (GET_NETWORK_CONNECTION , GetNetworkConnection .class );
328328 addNewMapping (SET_NETWORK_CONNECTION , SetNetworkConnection .class );
329- }
329+
330+ // Deprecated end points. Will be removed.
331+ addNewMapping ("getCurrentWindowHandleW3C" , GetCurrentWindowHandle .class );
332+ addNewMapping ("getWindowHandlesW3C" , GetAllWindowHandles .class );
333+
334+ addNewMapping ("dimissAlertW3C" , DismissAlert .class );
335+ addNewMapping ("acceptAlertW3C" , AcceptAlert .class );
336+ addNewMapping ("getAlertTextW3C" , GetAlertText .class );
337+ addNewMapping ("setAlertValueW3C" , SetAlertText .class );
338+ addNewMapping ("executeScriptW3C" , ExecuteScript .class );
339+ addNewMapping ("executeAsyncScriptW3C" , ExecuteAsyncScript .class );
340+ addNewMapping ("getWindowSize" , GetWindowSize .class );
341+ addNewMapping ("setWindowSize" , SetWindowSize .class );
342+ addNewMapping ("maximizeWindow" , MaximizeWindow .class );
343+ }
330344}
You can’t perform that action at this time.
0 commit comments