We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 332dfe5 commit cd1e2c9Copy full SHA for cd1e2c9
java/client/src/org/openqa/selenium/qtwebkit/QtWebKitDriver.java
@@ -60,6 +60,14 @@ public class QtWebKitDriver extends RemoteWebDriver
60
*/
61
public final static String HYBRID = "hybrid";
62
63
+ /**
64
+ * Custom capability.
65
+ * WD checks this caps, if it is not specified,
66
+ * in case of attempt to create second session we get exception of "one session only",
67
+ * otherwise prev session will be terminated without closing windows
68
+ * and new session can reuse those windows
69
+ */
70
+ public final static String REUSE_UI = "reuseUI";
71
72
public QtWebKitDriver(CommandExecutor executor, Capabilities desiredCapabilities,
73
Capabilities requiredCapabilities) {
0 commit comments