উপরের সমস্ত উত্তর সঠিক, নীচে সমস্যা এবং সমাধানের জন্য সামান্য গভীর ডুব দেওয়া আছে।
উদাহরণস্বরূপ সেলেনিয়ামে ড্রাইভার কনস্ট্রাক্টর
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.driver"
অন্যান্য ব্রাউজারগুলির ক্ষেত্রেও এটি একই রকম, উপলব্ধ ব্রাউজার বাস্তবায়নের তালিকার স্ন্যাপশট নীচে দেওয়া আছে