File tree 1 file changed +15
-1
lines changed
java/server/src/org/openqa/selenium/remote/server
1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -326,5 +326,19 @@ private void setUpMappings() {
326
326
327
327
addNewMapping (GET_NETWORK_CONNECTION , GetNetworkConnection .class );
328
328
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
+ }
330
344
}
You can’t perform that action at this time.
0 commit comments