Skip to content

Commit ae21d2f

Browse files
committed
testing the latest firefox version
1 parent b3ad565 commit ae21d2f

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/core/ConcolicEngine.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -229,9 +229,9 @@ private void instrumentDynamically(boolean useproxy) throws Exception {
229229
//FirefoxProfile profile = new FirefoxProfile();
230230

231231
FirefoxBinary binary = new FirefoxBinary(new File("/Applications/Firefox 2.app/Contents/MacOS/firefox"));
232-
driver = new FirefoxDriver(binary, profile);
232+
//driver = new FirefoxDriver(binary, profile);
233233
// setting the webdriver without proxy
234-
//driver = new FirefoxDriver();
234+
driver = new FirefoxDriver();
235235
driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
236236
}
237237
}
@@ -340,7 +340,10 @@ public void generateCoverageReport() {
340340
profile.setPreference("network.proxy.no_proxies_on", "");
341341

342342
FirefoxBinary binary = new FirefoxBinary(new File("/Applications/Firefox 2.app/Contents/MacOS/firefox"));
343-
driver = new FirefoxDriver(binary, profile);
343+
//driver = new FirefoxDriver(binary, profile);
344+
345+
driver = new FirefoxDriver();
346+
344347

345348
driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
346349

0 commit comments

Comments
 (0)