File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
java/client/test/org/openqa/selenium/testing/drivers Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 22
22
import static org .openqa .selenium .testing .DevMode .isInDevMode ;
23
23
import static org .openqa .selenium .testing .InProject .locate ;
24
24
25
+ import com .google .common .collect .ImmutableMap ;
25
26
import com .google .common .io .Files ;
26
27
27
28
import org .openqa .selenium .Build ;
@@ -38,11 +39,11 @@ public class SynthesizedFirefoxDriver extends FirefoxDriver {
38
39
private static boolean runBuild = true ;
39
40
40
41
public SynthesizedFirefoxDriver () {
41
- super ( createTemporaryProfile ());
42
+ this ( new DesiredCapabilities (), new DesiredCapabilities ());
42
43
}
43
44
44
45
public SynthesizedFirefoxDriver (FirefoxProfile profile ) throws IOException {
45
- super ( copyExtensionTo ( profile ));
46
+ this ( new DesiredCapabilities (), new DesiredCapabilities ( ImmutableMap . of ( PROFILE , profile ) ));
46
47
}
47
48
48
49
public SynthesizedFirefoxDriver (Capabilities desiredCapabilities ) {
You can’t perform that action at this time.
0 commit comments