Skip to content

Commit 517313e

Browse files
lukeisTikhomirovSergey
authored andcommitted
adding selenium server pass throughs for W3C dialect of alert / window / cookie commands.
changing how W3C dialect is detected by checking if 'status' is sent in the new session response switch to window in w3c passes in 'handle' variable instead of 'name' Fixes #1242 Fixes #1241 Fixes #1240 Fixes #1238 Fixes #1237
1 parent 0d1432c commit 517313e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/main/java/org/openqa/selenium/WebDriver.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,6 @@ interface Options {
238238
/**
239239
* @return the interface for managing the current window.
240240
*/
241-
@Beta
242241
Window window();
243242

244243
/**
@@ -508,5 +507,10 @@ interface Window {
508507
* Maximizes the current window if it is not already maximized
509508
*/
510509
void maximize();
510+
511+
/**
512+
* Fullscreen the current window if it is not already fullscreen
513+
*/
514+
void fullscreen();
511515
}
512516
}

0 commit comments

Comments
 (0)