Skip to content

Commit

Permalink
It appears we do not use the SynthesizedFirefoxDriver much these days
Browse files Browse the repository at this point in the history
  • Loading branch information
shs96c committed Dec 11, 2018
1 parent 501d844 commit a5cf2d2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ private static FirefoxProfile copyExtensionTo(FirefoxProfile profile) throws IOE
Files.copy(is, path);
}
} else if (runBuild) {
Path output = new BuckBuild().of("//javascript/firefox-driver:webdriver").go();
Path output = new BuckBuild().of("//third_party/js/selenium:webdriver").go();
ext = output.toFile();
cachedExt = ext;
runBuild = false;
Expand Down Expand Up @@ -148,7 +148,7 @@ private Path actuallyGetPrefsPath() {
synchronized (CustomProfile.class) {
if (prefs == null) {
try {
prefs = new BuckBuild().of("//javascript/firefox-driver:webdriver_prefs").go();
prefs = new BuckBuild().of("//third_party/js/selenium:webdriver_prefs").go();
} catch (IOException ioe) {
throw new WebDriverException(ioe);
}
Expand Down

0 comments on commit a5cf2d2

Please sign in to comment.