コード例 #1
0
ファイル: FirefoxProfile.java プロジェクト: santiycr/selenium
  public FirefoxProfile() {
    this(ProfileReaper.getInstance());
    profileDir = getUniqueProfileDir();

    if (profileDir == null || !profileDir.mkdirs()) {
      throw new RuntimeException("Cannot create custom profile directory");
    }

    commonConstruction(profileDir);
  }
コード例 #2
0
ファイル: FirefoxProfile.java プロジェクト: santiycr/selenium
 public FirefoxProfile(File profileDir) {
   this(ProfileReaper.getInstance());
   commonConstruction(profileDir);
 }