위의 모든 대답은 정확합니다. 다음은 문제와 해결책에 대한 약간의 잠수입니다.
예를 들어 셀레늄의 드라이버 생성자
WebDriver driver = new ChromeDriver();
드라이버 실행 파일을 검색합니다 (이 경우 크롬 드라이버는 서비스가 예외를 던진 실행 파일을 찾을 수없는 경우에 크롬 드라이버 실행 파일을 검색합니다)
여기에서 예외가 발생합니다 (체크 상태 방법 참고).
/**
*
* @param exeName Name of the executable file to look for in PATH
* @param exeProperty Name of a system property that specifies the path to the executable file
* @param exeDocs The link to the driver documentation page
* @param exeDownload The link to the driver download page
*
* @return The driver executable as a {@link File} object
* @throws IllegalStateException If the executable not found or cannot be executed
*/
protected static File findExecutable(
String exeName,
String exeProperty,
String exeDocs,
String exeDownload) {
String defaultPath = new ExecutableFinder().find(exeName);
String exePath = System.getProperty(exeProperty, defaultPath);
checkState(exePath != null,
"The path to the driver executable must be set by the %s system property;"
+ " for more information, see %s. "
+ "The latest version can be downloaded from %s",
exeProperty, exeDocs, exeDownload);
File exe = new File(exePath);
checkExecutable(exe);
return exe;
}
다음은 예외를 발생시키는 점검 상태 메소드입니다.
/**
* Ensures the truth of an expression involving the state of the calling instance, but not
* involving any parameters to the calling method.
*
* <p>See {@link #checkState(boolean, String, Object...)} for details.
*/
public static void checkState(
boolean b,
@Nullable String errorMessageTemplate,
@Nullable Object p1,
@Nullable Object p2,
@Nullable Object p3) {
if (!b) {
throw new IllegalStateException(format(errorMessageTemplate, p1, p2, p3));
}
}
해결책 : 드라이버 객체를 생성하기 전에 다음과 같이 시스템 속성을 설정하십시오
System.setProperty("webdriver.gecko.driver", "path/to/chromedriver.exe");
WebDriver driver = new ChromeDriver();
다음은 드라이버 서비스가 드라이버 실행 파일을 검색하는 코드 스 니펫 (chrome 및 firefox)입니다.
크롬:
@Override
protected File findDefaultExecutable() {
return findExecutable("chromedriver", CHROME_DRIVER_EXE_PROPERTY,
"https://github.com/SeleniumHQ/selenium/wiki/ChromeDriver",
"http://chromedriver.storage.googleapis.com/index.html");
}
파이어 폭스 :
@Override
protected File findDefaultExecutable() {
return findExecutable(
"geckodriver", GECKO_DRIVER_EXE_PROPERTY,
"https://github.com/mozilla/geckodriver",
"https://github.com/mozilla/geckodriver/releases");
}
여기서 CHROME_DRIVER_EXE_PROPERTY = "webdriver.chrome.driver"및 GECKO_DRIVER_EXE_PROPERTY = "webdriver.gecko.driver"
다른 브라우저의 경우도 마찬가지입니다. 다음은 사용 가능한 브라우저 구현 목록의 스냅 샷입니다.