File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
java/client/src/org/openqa/selenium/firefox Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -124,10 +124,18 @@ public FirefoxDriver(GeckoDriverService service) {
124
124
super (new DriverCommandExecutor (service ), new FirefoxOptions ());
125
125
}
126
126
127
+ public FirefoxDriver (XpiDriverService service ) {
128
+ super (new DriverCommandExecutor (service ), new FirefoxOptions ());
129
+ }
130
+
127
131
public FirefoxDriver (GeckoDriverService service , FirefoxOptions options ) {
128
132
super (new DriverCommandExecutor (service ), dropCapabilities (options ));
129
133
}
130
134
135
+ public FirefoxDriver (XpiDriverService service , FirefoxOptions options ) {
136
+ super (new DriverCommandExecutor (service ), dropCapabilities (options ));
137
+ }
138
+
131
139
private static CommandExecutor toExecutor (FirefoxOptions options ) {
132
140
Objects .requireNonNull (options , "No options to construct executor from" );
133
141
DriverService .Builder <?, ?> builder ;
You can’t perform that action at this time.
0 commit comments