We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8afc242 commit 0e89378Copy full SHA for 0e89378
java/client/src/org/openqa/selenium/opera/OperaOptions.java
@@ -27,6 +27,7 @@
27
import com.google.common.collect.Maps;
28
import com.google.common.io.Files;
29
30
+import org.openqa.selenium.Capabilities;
31
import org.openqa.selenium.MutableCapabilities;
32
import org.openqa.selenium.Proxy;
33
import org.openqa.selenium.WebDriverException;
@@ -76,6 +77,12 @@ public OperaOptions() {
76
77
setCapability(BROWSER_NAME, OPERA_BLINK);
78
}
79
80
+ @Override
81
+ public OperaOptions merge(Capabilities extraCapabilities) {
82
+ super.merge(extraCapabilities);
83
+ return this;
84
+ }
85
+
86
/**
87
* Sets the path to the Opera executable. This path should exist on the
88
* machine which will launch Opera. The path should either be absolute or
0 commit comments