उपरोक्त सभी उत्तर सही हैं, निम्नलिखित समस्या और समाधान में थोड़ा गहरा गोता लगाते हैं।
उदाहरण के लिए सेलेनियम में ड्राइवर का निर्माण
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();
निम्नलिखित कोड स्निपेट (क्रोम और फ़ायरफ़ॉक्स के लिए) है जहां ड्राइवर सेवा ड्राइवर के निष्पादन के लिए खोज करती है:
क्रोम:
@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.dverver"
अन्य ब्राउज़रों के लिए भी ऐसा ही है, निम्नलिखित ब्राउज़र कार्यान्वयन की सूची का स्नैपशॉट है