程序正在错误路径而不是脚本中提到的可执行路径中搜索 chrome 驱动程序

Program is searching for chrome driver in wrong path instead of Executable path mentioned in script

我知道在 Selenium WebDriver 中提出了很多与可执行路径问题相关的问题,但是,我在下面解释的问题是不同的。

我在脚本中正确地给出了 chrome 驱动程序路径。 路径:F:\chromedriver.exe 但是在 execution:The 驱动程序可执行文件不存在期间,系统正在不同的路径中搜索:E:\WorkSpace\Flipkart\‪F:\chromedriver.exe

我不知道为什么它正在寻找完全错误的不同路径。请提供您对这个问题的建议和看法。

public class Engine {
 public static void main(String[] args) {

    System.setProperty("webdriver.chrome.driver", "‪F:\chromedriver.exe");
    WebDriver driver = new ChromeDriver();
 }

}

我使用文件 class 绕过了这个问题。请找到以下代码。

public class Engine {
     public static void main(String[] args) {
    File filename = new File("F:\chromedriver.exe");
        System.setProperty("webdriver.chrome.driver", filename.getAbsolutePath());

        WebDriver driver = new ChromeDriver();
        driver.get("www.google.com");
     }